Configuration Property Bean to load the OP wide registration token life

time
pull/620/head
tjain 2014-06-13 03:15:03 +05:30 committed by Justin Richer
parent 4e09ec687b
commit 276d846f4c
1 changed files with 15 additions and 0 deletions

View File

@ -42,6 +42,8 @@ public class ConfigurationPropertiesBean {
private String logoImageUrl;
private Long regTokenLifeTime;
public ConfigurationPropertiesBean() {
}
@ -98,4 +100,17 @@ public class ConfigurationPropertiesBean {
this.logoImageUrl = logoImageUrl;
}
/**
* @return the regTokenLifeTime
*/
public Long getRegTokenLifeTime() {
return regTokenLifeTime;
}
/**
* @param regTokenLifeTime the registration token lifetime to set in seconds
*/
public void setRegTokenLifeTime(Long regTokenLifeTime) {
this.regTokenLifeTime = regTokenLifeTime;
}
}