1 | String getRegex() {↵ | | 1 | String getConfigChoice() {↵
|
2 | return getPropertyAsString(REGEX);↵ | | 2 | return getPropertyAsString(↵
|
3 | }↵ | | |
|
| | | 3 | CONFIG_CHOICE);↵
|
| | | 4 | }↵
|
|
| | | 5 | /**↵
|
| | | 6 | * set the source of the message↵
|
| | | 7 | * ↵
|
| | | 8 | * @param choice↵
|
| | | 9 | */↵
|
4 | public void setRefName(String refName) {↵ | | 10 | public void setMessageChoice(String choice) {↵
|
5 | setProperty(REFNAME, refName);↵ | | 11 | setProperty(↵
|
6 | }↵ | | |
|
| | | 12 | MESSAGE_CHOICE, choice);↵
|
| | | 13 | }↵
|
|
| | | 14 | /**↵
|
| | | 15 | * return the source of the message↵
|
| | | 16 | * ↵
|
| | | 17 | */↵
|
7 | public String getRefName() {↵ | | 18 | public String getMessageChoice() {↵
|
8 | return getPropertyAsString(REFNAME);↵ | | 19 | return getPropertyAsString(MESSAGE_CHOICE);↵
|
9 | | | 20 |
|