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