mirror of https://github.com/sipwise/jitsi.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
72 lines
1.8 KiB
72 lines
1.8 KiB
/*
|
|
* 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.plugin.icqaccregwizz;
|
|
|
|
/**
|
|
* The <tt>IcqAccountRegistration</tt> is used to store all user input data
|
|
* through the <tt>IcqAccountRegistrationWizard</tt>.
|
|
*
|
|
* @author Yana Stamcheva
|
|
*/
|
|
public class IcqAccountRegistration {
|
|
|
|
private String uin;
|
|
|
|
private String password;
|
|
|
|
private boolean rememberPassword;
|
|
|
|
/**
|
|
* Returns the password of the icq registration account.
|
|
* @return the password of the icq registration account.
|
|
*/
|
|
public String getPassword() {
|
|
return password;
|
|
}
|
|
|
|
/**
|
|
* Sets the password of the icq registration account.
|
|
* @param password the password of the icq registration account.
|
|
*/
|
|
public void setPassword(String password) {
|
|
this.password = password;
|
|
}
|
|
|
|
/**
|
|
* Returns TRUE if password has to remembered, FALSE otherwise.
|
|
* @return TRUE if password has to remembered, FALSE otherwise
|
|
*/
|
|
public boolean isRememberPassword() {
|
|
return rememberPassword;
|
|
}
|
|
|
|
/**
|
|
* Sets the rememberPassword value of this icq account registration.
|
|
* @param rememberPassword TRUE if password has to remembered, FALSE
|
|
* otherwise
|
|
*/
|
|
public void setRememberPassword(boolean rememberPassword) {
|
|
this.rememberPassword = rememberPassword;
|
|
}
|
|
|
|
/**
|
|
* Returns the UIN of the icq registration account.
|
|
* @return the UIN of the icq registration account.
|
|
*/
|
|
public String getUin() {
|
|
return uin;
|
|
}
|
|
|
|
/**
|
|
* Sets the UIN of the icq registration account.
|
|
* @param uin the UIN of the icq registration account.
|
|
*/
|
|
public void setUin(String uin) {
|
|
this.uin = uin;
|
|
}
|
|
}
|