diff options
Diffstat (limited to 'src/net/java/sip')
-rw-r--r-- | src/net/java/sip/communicator/service/gui/ExtendedAccountRegistrationWizard.java | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/src/net/java/sip/communicator/service/gui/ExtendedAccountRegistrationWizard.java b/src/net/java/sip/communicator/service/gui/ExtendedAccountRegistrationWizard.java new file mode 100644 index 0000000..162f791 --- /dev/null +++ b/src/net/java/sip/communicator/service/gui/ExtendedAccountRegistrationWizard.java @@ -0,0 +1,29 @@ +/* + * SIP Communicator, the OpenSource Java VoIP and Instant Messaging client. + * + * Distributable under LGPL license. See terms of license at gnu.org. + */ +package net.java.sip.communicator.service.gui; + +/** + * The <tt>ExtendedAccountRegistrationWizard</tt> allows to specify if a sign up + * form is supported. + * + * @author Yana Stamcheva + */ +public interface ExtendedAccountRegistrationWizard + extends AccountRegistrationWizard +{ + /** + * 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(); + + /** + * Sets the create account view of this registration wizard. + */ + public void setCreateAccountView(); +} |