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