diff options
author | Yana Stamcheva <yana@jitsi.org> | 2011-05-19 10:27:18 +0000 |
---|---|---|
committer | Yana Stamcheva <yana@jitsi.org> | 2011-05-19 10:27:18 +0000 |
commit | 714712eef80d6acf39a6ae90cad9190e40939c3d (patch) | |
tree | 1b48ac779fe04cde5d517f2d81ad099cc6db252f /src/net/java/sip/communicator/service/gui/AccountRegistrationWizard.java | |
parent | 84f37df8c4bb728e2066a516c371ac971d257d33 (diff) | |
download | jitsi-714712eef80d6acf39a6ae90cad9190e40939c3d.zip jitsi-714712eef80d6acf39a6ae90cad9190e40939c3d.tar.gz jitsi-714712eef80d6acf39a6ae90cad9190e40939c3d.tar.bz2 |
Check for create form for all account registration wizards before sending the user to the web registration page.
Diffstat (limited to 'src/net/java/sip/communicator/service/gui/AccountRegistrationWizard.java')
-rw-r--r-- | src/net/java/sip/communicator/service/gui/AccountRegistrationWizard.java | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/net/java/sip/communicator/service/gui/AccountRegistrationWizard.java b/src/net/java/sip/communicator/service/gui/AccountRegistrationWizard.java index e937f52..0aba34a 100644 --- a/src/net/java/sip/communicator/service/gui/AccountRegistrationWizard.java +++ b/src/net/java/sip/communicator/service/gui/AccountRegistrationWizard.java @@ -157,12 +157,21 @@ public interface AccountRegistrationWizard /** * Defines the operation that will be executed when user clicks on the * "Sign up" link. + * * @throws UnsupportedOperationException if the web sign up operation is * not supported by the current implementation. */ public void webSignup() throws UnsupportedOperationException; /** + * Indicates if a sign up form is supported by this wizard. + * + * @return <tt>true</tt> if a sign up form is supported by this wizard, + * <tt>false</tt> - otherwise + */ + public boolean isSignupSupported(); + + /** * Returns the preferred dimensions of this wizard. * * @return the preferred dimensions of this wizard. |