1 | void setJNDIIntialContextFactory(String icf) {↵ | | 1 | void setFilename(String newFilename) {↵
|
2 | setProperty(JNDI_INITIAL_CONTEXT_FAC, icf);↵ | | 2 | this.setProperty(↵
|
3 | }↵ | | |
|
|
4 | /**↵ | | |
|
5 | * method returns the initial context factory for jndi initial context↵ | | |
|
6 | * lookup.↵ | | |
|
7 | * ↵ | | |
|
8 | * @return the initial context factory ↵ | | |
|
9 | */↵ | | |
|
10 | public String getJNDIInitialContextFactory() {↵ | | |
|
11 | return getPropertyAsString(JNDI_INITIAL_CONTEXT_FAC);↵ | | |
|
12 | }↵ | | |
|
|
13 | /**↵ | | |
|
14 | * set the provider user for jndi↵ | | |
|
15 | * ↵ | | |
|
16 | * @param url the provider URL↵ | | |
|
17 | */↵ | | 3 | FILENAME, newFilename);↵
|
| | | 4 | }↵
|
|
| | | 5 | public String getFilename() {↵
|
| | | 6 | return getPropertyAsString(FILENAME);↵
|
| | | 7 | }↵
|
|
18 | public void setProviderUrl(String url) {↵ | | 8 | public void setRequestData(String newRequestData) {↵
|
19 | setProperty(PROVIDER_URL, url);↵ | | 9 | this.setProperty(REQUEST, newRequestData);↵
|
20 | | | 10 |
|