From 333a823b1417bfe834e7090a19d95a510b1b51e0 Mon Sep 17 00:00:00 2001 From: Yana Stamcheva Date: Wed, 21 Jan 2009 12:51:15 +0000 Subject: - Fixes Issue #: 434 Wrong ID when try to install an already installed account. - Removes the "Override server" option from account wizards. - Adds a property to the ProtocolProviderFactory which indicates if the server has been modified --- .../sip/communicator/service/gui/AccountRegistrationWizard.java | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'src/net/java/sip/communicator/service/gui/AccountRegistrationWizard.java') diff --git a/src/net/java/sip/communicator/service/gui/AccountRegistrationWizard.java b/src/net/java/sip/communicator/service/gui/AccountRegistrationWizard.java index e5d8dc2..7a9b949 100644 --- a/src/net/java/sip/communicator/service/gui/AccountRegistrationWizard.java +++ b/src/net/java/sip/communicator/service/gui/AccountRegistrationWizard.java @@ -118,9 +118,9 @@ public interface AccountRegistrationWizard /** * Defines the operations that will be executed when the user clicks on * the wizard "Signin" button. - * */ - public ProtocolProviderService signin(); + public ProtocolProviderService signin() + throws OperationFailedException; /** * Defines the operations that will be executed when the user clicks on @@ -130,7 +130,8 @@ public interface AccountRegistrationWizard * @param password the password to sign in with */ public ProtocolProviderService signin( String userName, - String password); + String password) + throws OperationFailedException; /** * Returns true if the web sign up is supported by the current -- cgit v1.1