blob: f2a96daf71ebcbd3bbe475de205872657299ee55 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
|
/*
* 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;
private String proxyPort;
private String proxy;
private String proxyType;
private String proxyUsername;
private String proxyPassword;
/**
* 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;
}
/**
* Returns the proxy that will be used for this icq account.
* @return the proxy that will be used for this icq account.
*/
public String getProxy() {
return proxy;
}
/**
* Sets the proxy for this icq account.
* @param proxy the proxy for this icq account.
*/
public void setProxy(String proxy) {
this.proxy = proxy;
}
/**
* Returns the proxy port that will be used for this icq account.
* @return the proxy port that will be used for this icq account.
*/
public String getProxyPort() {
return proxyPort;
}
/**
* Sets the proxy port for this icq account.
* @param proxyPort the proxy port for this icq account.
*/
public void setProxyPort(String proxyPort) {
this.proxyPort = proxyPort;
}
/**
* Returns the proxy type that will be used for this icq account.
* @return the proxy type that will be used for this icq account.
*/
public String getProxyType() {
return proxyType;
}
/**
* Sets the proxy type for this icq account.
* @param proxyType the proxy type for this icq account
*/
public void setProxyType(String proxyType) {
this.proxyType = proxyType;
}
/**
* Returns the proxy password of the icq registration account.
* @return the proxy password of the icq registration account.
*/
public String getProxyPassword() {
return proxyPassword;
}
/**
* Sets the proxy password of the icq registration account.
* @param password the proxy password of the icq registration account.
*/
public void setProxyPassword(String password) {
this.proxyPassword = password;
}
/**
* Returns the proxy username of the icq registration account.
* @return the proxy username of the icq registration account.
*/
public String getProxyUsername() {
return proxyUsername;
}
/**
* Sets the proxy username of the icq registration account.
* @param username the proxy username of the icq registration account
*/
public void setProxyUsername(String username) {
this.proxyUsername = username;
}
}
|