aboutsummaryrefslogtreecommitdiffstats
path: root/src/net/java/sip/communicator/service
diff options
context:
space:
mode:
authorYana Stamcheva <yana@jitsi.org>2008-05-28 11:19:54 +0000
committerYana Stamcheva <yana@jitsi.org>2008-05-28 11:19:54 +0000
commit2c111b0a89cacc1940816c6f3fa0d804a339a1f4 (patch)
treee6729e5dde700a15df1877a2ef02fd45eaf32e23 /src/net/java/sip/communicator/service
parentb7fa06b02e2af0648bc3b6bd7c3b64a1fa630e0a (diff)
downloadjitsi-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/service')
-rw-r--r--src/net/java/sip/communicator/service/gui/AccountRegistrationWizard.java18
1 files changed, 16 insertions, 2 deletions
diff --git a/src/net/java/sip/communicator/service/gui/AccountRegistrationWizard.java b/src/net/java/sip/communicator/service/gui/AccountRegistrationWizard.java
index 2e9d536..72b6fb5 100644
--- a/src/net/java/sip/communicator/service/gui/AccountRegistrationWizard.java
+++ b/src/net/java/sip/communicator/service/gui/AccountRegistrationWizard.java
@@ -30,8 +30,6 @@ import net.java.sip.communicator.service.protocol.*;
*/
public interface AccountRegistrationWizard
{
- public static final String PREFERRED_WIZARD = "PreferredWizard";
-
/**
* Returns the protocol icon that will be shown on the left of the protocol
* name in the list, where user will choose the protocol to register to.
@@ -135,6 +133,22 @@ public interface AccountRegistrationWizard
String password);
/**
+ * 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();
+
+ /**
+ * 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;
+
+ /**
* Returns the preferred dimensions of this wizard.
*
* @return the preferred dimensions of this wizard.