Configuration Property Bean to load the OP wide registration token life
timepull/620/head
parent
4e09ec687b
commit
276d846f4c
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue