1 | void setConfigChoice(String choice) {↵ | | 1 | void setMethod(String value) {↵
|
2 | setProperty(CONFIG_CHOICE, choice);↵ | | 2 | setProperty(↵
|
3 | }↵ | | |
|
|
4 | /**↵ | | |
|
5 | * return the config choice↵ | | |
|
6 | * ↵ | | |
|
7 | */↵ | | 3 | METHOD, value);↵
|
| | | 4 | }↵
|
|
8 | public String getConfigChoice() {↵ | | 5 | public String getMethod() {↵
|
9 | return getPropertyAsString(CONFIG_CHOICE);↵ | | 6 | return getPropertyAsString(↵
|
10 | }↵ | | |
|
|
11 | /**↵ | | |
|
12 | * set the source of the message↵ | | |
|
13 | * ↵ | | |
|
14 | * @param choice↵ | | |
|
15 | */↵ | | |
|
16 | public void setMessageChoice↵ | | 7 | METHOD);↵
|
| | | 8 | }↵
|
|
17 | (String choice) {↵ | | 9 | public void setContentEncoding(String value) {↵
|
18 | setProperty(MESSAGE_CHOICE, choice);↵ | | 10 | setProperty(↵
|
19 | }↵ | | |
|
|
20 | /**↵ | | |
|
21 | * return the source of the message↵ | | |
|
22 | * ↵ | | |
|
23 | */↵ | | 11 | CONTENT_ENCODING, value);↵
|
| | | 12 | }↵
|
|
24 | public String getMessageChoice() {↵ | | 13 | public String getContentEncoding() {↵
|
25 | return getPropertyAsString(MESSAGE_CHOICE);↵ | | 14 | return getPropertyAsString(CONTENT_ENCODING);↵
|
26 | | | 15 |
|