All Downloads are FREE. Search and download functionalities are using the official Maven repository.

de.bund.bva.isyfact.sicherheit.config.IsySicherheitConfigurationProperties Maven / Gradle / Ivy

There is a newer version: 3.2.1
Show newest version
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