diff options
author | Yana Stamcheva <yana@jitsi.org> | 2008-05-28 11:19:54 +0000 |
---|---|---|
committer | Yana Stamcheva <yana@jitsi.org> | 2008-05-28 11:19:54 +0000 |
commit | 2c111b0a89cacc1940816c6f3fa0d804a339a1f4 (patch) | |
tree | e6729e5dde700a15df1877a2ef02fd45eaf32e23 /src/net/java/sip/communicator/plugin/zeroconfaccregwizz/ZeroconfAccountRegistrationWizard.java | |
parent | b7fa06b02e2af0648bc3b6bd7c3b64a1fa630e0a (diff) | |
download | jitsi-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/zeroconfaccregwizz/ZeroconfAccountRegistrationWizard.java')
-rw-r--r-- | src/net/java/sip/communicator/plugin/zeroconfaccregwizz/ZeroconfAccountRegistrationWizard.java | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/net/java/sip/communicator/plugin/zeroconfaccregwizz/ZeroconfAccountRegistrationWizard.java b/src/net/java/sip/communicator/plugin/zeroconfaccregwizz/ZeroconfAccountRegistrationWizard.java index 6da3c02..b7cd6be 100644 --- a/src/net/java/sip/communicator/plugin/zeroconfaccregwizz/ZeroconfAccountRegistrationWizard.java +++ b/src/net/java/sip/communicator/plugin/zeroconfaccregwizz/ZeroconfAccountRegistrationWizard.java @@ -344,4 +344,24 @@ public class ZeroconfAccountRegistrationWizard { return false; } + + /** + * Nothing to do here in the case of Bonjour. + */ + public void webSignup() + { + throw new UnsupportedOperationException( + "The web sign up is not supported by the Zeroconf 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; + } } |