aboutsummaryrefslogtreecommitdiffstats
path: root/src/net/java/sip/communicator/plugin/rssaccregwizz
diff options
context:
space:
mode:
authorYana Stamcheva <yana@jitsi.org>2008-05-28 11:19:54 +0000
committerYana Stamcheva <yana@jitsi.org>2008-05-28 11:19:54 +0000
commit2c111b0a89cacc1940816c6f3fa0d804a339a1f4 (patch)
treee6729e5dde700a15df1877a2ef02fd45eaf32e23 /src/net/java/sip/communicator/plugin/rssaccregwizz
parentb7fa06b02e2af0648bc3b6bd7c3b64a1fa630e0a (diff)
downloadjitsi-2c111b0a89cacc1940816c6f3fa0d804a339a1f4.zip
jitsi-2c111b0a89cacc1940816c6f3fa0d804a339a1f4.tar.gz
jitsi-2c111b0a89cacc1940816c6f3fa0d804a339a1f4.tar.bz2
Sign up link added to simple account registration page.
Diffstat (limited to 'src/net/java/sip/communicator/plugin/rssaccregwizz')
-rw-r--r--src/net/java/sip/communicator/plugin/rssaccregwizz/RssAccountRegistrationWizard.java20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/net/java/sip/communicator/plugin/rssaccregwizz/RssAccountRegistrationWizard.java b/src/net/java/sip/communicator/plugin/rssaccregwizz/RssAccountRegistrationWizard.java
index de92f82..ffa491f 100644
--- a/src/net/java/sip/communicator/plugin/rssaccregwizz/RssAccountRegistrationWizard.java
+++ b/src/net/java/sip/communicator/plugin/rssaccregwizz/RssAccountRegistrationWizard.java
@@ -279,4 +279,24 @@ public class RssAccountRegistrationWizard
{
return false;
}
+
+ /**
+ * Nothing to do for RSS here.
+ */
+ public void webSignup()
+ {
+ throw new UnsupportedOperationException(
+ "The web sign up is not supported by the RSS wizard.");
+ }
+
+ /**
+ * Returns <code>true</code> if the web sign up is supported by the current
+ * implementation, <code>false</code> - otherwise.
+ * @return <code>true</code> if the web sign up is supported by the current
+ * implementation, <code>false</code> - otherwise
+ */
+ public boolean isWebSignupSupported()
+ {
+ return false;
+ }
}