1 | String getValue() {↵ | | 1 | String getUser() {↵
|
2 | return getPropertyAsString(VALUE);↵ | | 2 | return getPropertyAsString(USERNAME);↵
|
3 | }↵ | | 3 | }↵
|
|
4 | /**↵ | | |
|
5 | * set the value for this object.↵ | | |
|
6 | */↵ | | |
|
7 | public synchronized void setValue(String value) {↵ | | 4 | public synchronized void setUser(String user) {↵
|
8 | this.setProperty(VALUE, value);↵ | | 5 | setProperty(↵
|
9 | }↵ | | |
|
|
10 | /**↵ | | |
|
11 | * get the domain for this object.↵ | | |
|
12 | */↵ | | 6 | USERNAME, user);↵
|
| | | 7 | }↵
|
|
13 | public synchronized String getDomain() {↵ | | 8 | public synchronized String getPass() {↵
|
14 | return getPropertyAsString(DOMAIN);↵ | | 9 | return getPropertyAsString(PASSWORD);↵
|
15 | }↵ | | 10 | }↵
|
|
16 | /**↵ | | |
|
17 | * set the domain for this object.↵ | | |
|
18 | */↵ | | |
|
19 | public synchronized void setDomain(String domain) {↵ | | 11 | public synchronized void setPass(String pass) {↵
|
20 | setProperty(DOMAIN, domain);↵ | | 12 | setProperty(PASSWORD, pass);↵
|
21 | | | 13 |
|