1 | String getPass() {↵ | | 1 | String get↵
|
2 | ↵ | | 2 | FooterURL() {↵
|
3 | return getPropertyAsString(PASSWORD);↵ | | 3 | return getPropertyAsString(↵
|
4 | }↵ | | |
|
|
5 | public synchronized void setPass↵ | | 4 | REPORT_PAGE_FOOTER);↵
|
| | | 5 | }↵
|
| | | 6 | ↵
|
6 | (String pass) {↵ | | 7 | public void setFooterURL(String url) {↵
|
7 | setProperty(PASSWORD, pass);↵ | | 8 | setProperty(↵
|
8 | }↵ | | |
|
|
9 | public synchronized String getDomain() {↵ | | |
|
10 | return getPropertyAsString(DOMAIN);↵ | | |
|
11 | }↵ | | |
|
|
12 | public synchronized void setDomain(String domain) {↵ | | |
|
13 | setProperty(DOMAIN, domain);↵ | | |
|
14 | | | 9 | REPORT_PAGE_FOOTER,url);↵
|
| | | 10 | }↵
|
| | | 11 | ↵
|
| | | 12 | public String getIntroduction() {↵
|
| | | 13 | return getPropertyAsString(REPORT_PAGE_INTRO);↵
|
| | | 14 | }↵
|
| | | 15 | ↵
|
| | | 16 | public void setIntroduction(String intro) {↵
|
| | | 17 | setProperty(REPORT_PAGE_INTRO,intro);↵
|
| | | 18 |
|