settings for heavy load

This commit is contained in:
Athou
2013-05-21 08:46:14 +02:00
parent 5a9e910ca8
commit 9c9a315d1c
3 changed files with 22 additions and 1 deletions

View File

@@ -25,6 +25,7 @@ public class ApplicationSettings extends AbstractModel {
private boolean smtpTls;
private String smtpUserName;
private String smtpPassword;
private boolean heavyLoad;
private boolean pubsubhubbub;
private boolean feedbackButton = true;
@@ -144,4 +145,12 @@ public class ApplicationSettings extends AbstractModel {
this.pubsubhubbub = pubsubhubbub;
}
public boolean isHeavyLoad() {
return heavyLoad;
}
public void setHeavyLoad(boolean heavyLoad) {
this.heavyLoad = heavyLoad;
}
}