From 5a1f93e019b800d11145c6b06f1da9f5f46eeb0b Mon Sep 17 00:00:00 2001 From: Yana Stamcheva Date: Wed, 25 May 2011 10:14:09 +0000 Subject: [PATCH] Moves some special properties in the ExtendedAccountRegistrationWizard interface. --- .../ExtendedAccountRegistrationWizard.java | 29 +++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 src/net/java/sip/communicator/service/gui/ExtendedAccountRegistrationWizard.java 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 000000000..162f79150 --- /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 ExtendedAccountRegistrationWizard 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 true if a sign up form is supported by this wizard, + * false - otherwise + */ + public boolean isSignupSupported(); + + /** + * Sets the create account view of this registration wizard. + */ + public void setCreateAccountView(); +}