mirror of https://github.com/sipwise/jitsi.git
Check for create form for all account registration wizards before sending the user to the web registration page.
parent
eed5ec0db3
commit
e05adb1578
@ -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;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author Yana Stamcheva
|
||||
*/
|
||||
public interface CreateAccountWindow
|
||||
{
|
||||
/**
|
||||
* Shows or hides this create account window.
|
||||
*
|
||||
* @param visible <tt>true</tt> to show this window, <tt>false</tt> -
|
||||
* otherwise
|
||||
*/
|
||||
public void setVisible(boolean visible);
|
||||
|
||||
/**
|
||||
* Sets the selected wizard.
|
||||
*
|
||||
* @param wizard the wizard to select
|
||||
*/
|
||||
public void setSelectedWizard(AccountRegistrationWizard wizard);
|
||||
}
|
||||
Loading…
Reference in new issue