1 | void setUserDN(String newUserDN) {↵ | | 1 | void set↵
|
2 | ↵ | | 2 | ParseFlag(String parseFlag) {↵
|
3 | setProperty(new StringProperty(USERDN, newUserDN));↵ | | 3 | setProperty(new StringProperty(PARSEFLAG, parseFlag));↵
|
4 | }↵ | | 4 | }↵
|
|
5 | /***************************************************************************↵ | | 5 | /***************************************************************************↵
|
6 | * Gets the password attribute of the LDAP object↵ | | 6 | * Gets the username attribute of the LDAP object↵
|
7 | * ↵ | | 7 | * ↵
|
8 | * @return The password↵ | | 8 | * @return The username↵
|
9 | **************************************************************************/↵ | | 9 | **************************************************************************/↵
|
|
10 | public String getUserPw() {↵ | | 10 | public String getUserDN() {↵
|
11 | return getPropertyAsString(USERPW);↵ | | 11 | return getPropertyAsString(USERDN);↵
|
12 | }↵ | | 12 | }↵
|
|
13 | /***************************************************************************↵ | | 13 | /***************************************************************************↵
|
14 | * Sets the password attribute of the LDAP object↵ | | 14 | * Sets the username attribute of the LDAP object↵
|
15 | * ↵ | | 15 | * ↵
|
16 | **************************************************************************/↵ | | 16 | **************************************************************************/↵
|
|
17 | public void setUserPw(String newUserPw) {↵ | | 17 | public void setUserDN(String newUserDN) {↵
|
18 | setProperty(new StringProperty(USERPW, newUserPw));↵ | | 18 | setProperty(new StringProperty(USERDN, newUserDN));↵
|
19 | } | | 19 | }
|