1 | String getPass() {↵ | | 1 | String getUser() {↵
|
2 | return getPropertyAsString(PASSWORD);↵ | | 2 | return getPropertyAsString(USERNAME);↵
|
3 | }↵ | | 3 | }↵
|
|
4 | public synchronized void setPass(String pass) {↵ | | 4 | public synchronized void setUser(String user) {↵
|
5 | setProperty(PASSWORD, pass);↵ | | 5 | setProperty(USERNAME, user);↵
|
6 | }↵ | | 6 | }↵
|
|
7 | public synchronized String getDomain() {↵ | | 7 | public synchronized String getPass() {↵
|
8 | return getPropertyAsString(DOMAIN);↵ | | 8 | return getPropertyAsString(PASSWORD);↵
|
9 | }↵ | | 9 | }↵
|
|
10 | public synchronized void setDomain(String domain) {↵ | | 10 | public synchronized void setPass(String pass) {↵
|
11 | setProperty(DOMAIN, domain);↵ | | 11 | setProperty(PASSWORD, pass);↵
|
12 | | | 12 |
|