1 | void setUserPw(String newUserPw) {↵ | | 1 | void setHttpsSpoofMatch(String s) {↵
|
2 | setProperty(new StringProperty(USERPW, newUserPw));↵ | | 2 | setProperty(new StringProperty(HTTPS_SPOOF_MATCH, s));↵
|
3 | }↵ | | 3 | }↵
|
|
4 | /***************************************************************************↵ | | 4 | ↵
|
5 | * Sets the Servername attribute of the ServerConfig object↵ | | |
|
6 | * ↵ | | |
|
7 | * @param servername↵ | | |
|
8 | * The new servername value↵ | | |
|
9 | **************************************************************************/↵ | | |
|
10 | public void setServername(String servername) {↵ | | 5 | public void set↵
|
11 | setProperty(new StringProperty(SERVERNAME, servername));↵ | | |
|
12 | }↵ | | |
|
|
13 | /***************************************************************************↵ | | |
|
14 | * Sets the Port attribute of the ServerConfig object↵ | | |
|
15 | * ↵ | | |
|
16 | * @param port↵ | | |
|
17 | * The new Port value↵ | | |
|
18 | **************************************************************************/↵ | | |
|
19 | public void setPort(String port↵ | | 6 | ContentTypeExclude(String contentTypeExclude) {↵
|
| | | 7 | setProperty(new StringProperty(CONTENT_TYPE_EXCLUDE, contentTypeExclude));↵
|
| | | 8 | }↵
|
|
20 | ) {↵ | | 9 | public void setContentTypeInclude(String contentTypeInclude) {↵
|
21 | setProperty(new StringProperty(PORT, port));↵ | | 10 | setProperty(new StringProperty(CONTENT_TYPE_INCLUDE, contentTypeInclude));↵
|
22 | } | | 11 | }
|