1 | String getPass() {↵ | | 1 | String getName() {↵
|
2 | return getPropertyAsString(PASSWORD);↵ | | 2 | return getPropertyAsString(↵
|
3 | }↵ | | |
|
| | | 3 | HNAME);↵
|
| | | 4 | }↵
|
|
| | | 5 | /**↵
|
| | | 6 | * Set the name for this object.↵
|
| | | 7 | */↵
|
4 | public synchronized void setPass(String pass) {↵ | | 8 | public synchronized void setName(String name) {↵
|
5 | setProperty(PASSWORD, pass);↵ | | 9 | this.setProperty(↵
|
6 | }↵ | | |
|
| | | 10 | HNAME, name);↵
|
| | | 11 | }↵
|
|
| | | 12 | /**↵
|
| | | 13 | * Get the value for this object.↵
|
| | | 14 | */↵
|
7 | public synchronized String getDomain() {↵ | | 15 | public synchronized String getValue() {↵
|
8 | return getPropertyAsString(DOMAIN);↵ | | 16 | return getPropertyAsString(VALUE);↵
|
9 | }↵ | | 17 | }↵
|
|
| | | 18 | /**↵
|
| | | 19 | * Set the value for this object.↵
|
| | | 20 | */↵
|
10 | public synchronized void setDomain(String domain) {↵ | | 21 | public synchronized void setValue(String value) {↵
|
11 | setProperty(DOMAIN, domain);↵ | | 22 | this.setProperty(VALUE, value);↵
|
12 | | | 23 |
|