1 | String getMimeType() {↵ | | 1 | String getAttrs() {↵
|
2 | return getPropertyAsString(MIMETYPE);↵ | | 2 | return getPropertyAsString(ATTRIBS);↵
|
3 | }↵ | | 3 | }↵
|
|
4 | /**↵ | | 4 | /***************************************************************************↵
|
5 | * Set the path of the File.↵ | | 5 | * Sets the Base Entry DN attribute of the LDAPSampler object↵
|
6 | *↵ | | 6 | * ↵
|
7 | * @param newPath↵ | | 7 | * @param new↵
|
8 | * the new path↵ | | |
|
9 | ↵ | | 8 | baseentry↵
|
| | | 9 | * The new Base entry DN value↵
|
10 | */↵ | | 10 | **************************************************************************/↵
|
11 | public void setPath(String newPath) {↵ | | 11 | public void setBaseEntryDN(String newbaseentry) {↵
|
12 | setProperty(new StringProperty(FILEPATH, newPath));↵ | | 12 | setProperty(new StringProperty(↵
|
13 | }↵ | | |
|
|
14 | /↵ | | 13 | BASE_ENTRY_DN, newbaseentry));↵
|
| | | 14 | }↵
|
|
15 | **↵ | | 15 | /***************************************************************************↵
|
16 | * Get the path of the File.↵ | | 16 | * Gets the BaseEntryDN attribute of the LDAPSampler object↵
|
17 | *↵ | | 17 | * ↵
|
18 | * @return the file's path↵ | | 18 | * @return The ↵
|
19 | ↵ | | 19 | Base entry DN value↵
|
20 | */↵ | | 20 | **************************************************************************/↵
|
21 | public String getPath() {↵ | | 21 | public String getBaseEntryDN() {↵
|
22 | return getPropertyAsString(FILEPATH);↵ | | 22 | return getPropertyAsString(BASE_ENTRY_DN);↵
|
23 | | | 23 |
|