added heart-mode flag

pull/1046/head
Justin Richer 2016-02-23 19:24:52 -05:00
parent d0d6ae2ad8
commit fd452bf379
1 changed files with 17 additions and 1 deletions

View File

@ -62,7 +62,9 @@ public class ConfigurationPropertiesBean {
private List<String> languageNamespaces = Lists.newArrayList("messages");
public boolean dualClient = false;
private boolean dualClient = false;
private boolean heartMode = false;
public ConfigurationPropertiesBean() {
@ -223,4 +225,18 @@ public class ConfigurationPropertiesBean {
public String getDefaultLanguageNamespace() {
return getLanguageNamespaces().get(0);
}
/**
* @return the heartMode
*/
public boolean isHeartMode() {
return heartMode;
}
/**
* @param heartMode the heartMode to set
*/
public void setHeartMode(boolean heartMode) {
this.heartMode = heartMode;
}
}