1 | String getMethod() {↵ | | 1 | String getRefName() {↵
|
2 | return getPropertyAsString(METHOD);↵ | | 2 | return getPropertyAsString(REFNAME);↵
|
3 | }↵ | | 3 | }↵
|
|
4 | ↵ | | 4 | ↵
|
5 | public void setContentEncoding(String value) {↵ | | 5 | public void setDefaultValue(String val) {↵
|
6 | setProperty(CONTENT_ENCODING, value);↵ | | 6 | setProperty(DEFAULT, val);↵
|
7 | }↵ | | 7 | }↵
|
|
8 | public String getContentEncoding() {↵ | | 8 | public String getDefaultValue() {↵
|
9 | return getPropertyAsString(CONTENT_ENCODING);↵ | | 9 | return getPropertyAsString(DEFAULT);↵
|
10 | }↵ | | 10 | }↵
|
| | | 11 | ↵
|
11 | public void setUseKeepAlive(boolean value) {↵ | | 12 | public void setTolerant(boolean val) {↵
|
12 | setProperty(new BooleanProperty(USE_KEEPALIVE, value));↵ | | 13 | setProperty(new BooleanProperty(TOLERANT, val));↵
|
13 | }↵ | | 14 | }↵
|
|
14 | public boolean getUseKeepAlive() {↵ | | 15 | public boolean isTolerant() {↵
|
15 | return getPropertyAsBoolean(USE_KEEPALIVE);↵ | | 16 | return getPropertyAsBoolean(TOLERANT);↵
|
16 | }↵ | | 17 | }↵
|
|
17 | public void setDoMultipartPost(boolean value) {↵ | | 18 | public void setNameSpace(boolean val) {↵
|
18 | setProperty(new BooleanProperty(DO_MULTIPART_POST, value));↵ | | 19 | setProperty(new BooleanProperty(NAMESPACE, val));↵
|
19 | } | | 20 | }
|