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