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/plugin/aimaccregwizz | |
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/plugin/aimaccregwizz')
-rw-r--r-- | src/net/java/sip/communicator/plugin/aimaccregwizz/AimAccountRegistrationWizard.java | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/net/java/sip/communicator/plugin/aimaccregwizz/AimAccountRegistrationWizard.java b/src/net/java/sip/communicator/plugin/aimaccregwizz/AimAccountRegistrationWizard.java index 9b90eb6..54f5200 100644 --- a/src/net/java/sip/communicator/plugin/aimaccregwizz/AimAccountRegistrationWizard.java +++ b/src/net/java/sip/communicator/plugin/aimaccregwizz/AimAccountRegistrationWizard.java @@ -379,6 +379,17 @@ public class AimAccountRegistrationWizard } /** + * 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() + { + return false; + } + + /** * Returns a simple account registration form that would be the first form * shown to the user. Only if the user needs more settings she'll choose * to open the advanced wizard, consisted by all pages. |