
de.bund.bva.isyfact.sicherheit.config.IsySicherheitConfigurationProperties Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of isy-sicherheit Show documentation
Show all versions of isy-sicherheit Show documentation
Komponente für die Autorisierung von Benutzern in IsyFact-Anwendungen.
package de.bund.bva.isyfact.sicherheit.config;
/**
* @deprecated since IsyFact 3.0.0 in favor of the isy-security module.
*/
@Deprecated
public class IsySicherheitConfigurationProperties {
/** Defaultwert für die Time-to-live (in Sekunden) der Cacheinträge. 0 = deaktiviert. **/
private int ttl = 0;
/** Defaultwert für die maximale Anzahl an Einträgen im Cache (in Memory). **/
private int maxelements = 10000;
public int getTtl() {
return ttl;
}
public void setTtl(int ttl) {
this.ttl = ttl;
}
public int getMaxelements() {
return maxelements;
}
public void setMaxelements(int maxelements) {
this.maxelements = maxelements;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy