1 | String getPassword() {↵ | | 1 | String getTopic() {↵
|
2 | return getPropertyAsString(ConfigTestElement.PASSWORD);↵ | | 2 | return getPropertyAsString(↵
|
3 | }↵ | | |
|
| | | 3 | TOPIC);↵
|
| | | 4 | }↵
|
|
| | | 5 | /**↵
|
| | | 6 | * set the username to login into the jms server if needed↵
|
| | | 7 | * ↵
|
| | | 8 | * @param user↵
|
| | | 9 | */↵
|
4 | public void setServer(String newServer) {↵ | | 10 | public void setUsername(String user) {↵
|
5 | this.setProperty(SERVER, newS↵ | | 11 | setProperty(PRINCIPAL, user);↵
|
| | | 12 | }↵
|
|
| | | 13 | /**↵
|
6 | erver);↵ | | 14 | * return the username used to login to the jms server↵
|
7 | }↵ | | 15 | ↵
|
| | | 16 | * ↵
|
| | | 17 | * @return the username used to login to the jms server↵
|
| | | 18 | */↵
|
8 | public String getServer() {↵ | | 19 | public String getUsername() {↵
|
9 | return getPropertyAsString(SERVER);↵ | | 20 | return getPropertyAsString(PRINCIPAL);↵
|
10 | | | 21 |
|