mirror of https://github.com/sipwise/jitsi.git
parent
0cfc06a084
commit
5a1f93e019
@ -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();
|
||||
}
|
||||
Loading…
Reference in new issue