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

com.kould.properties.InterprocessCacheProperties Maven / Gradle / Ivy

package com.kould.properties;

public class InterprocessCacheProperties {

    public InterprocessCacheProperties() {
    }

    public InterprocessCacheProperties(boolean enable, int size) {
        this.enable = enable;
        this.size = size;
    }

    private boolean enable = true;

    private int size =200;

    public boolean isEnable() {
        return enable;
    }

    public void setEnable(boolean enable) {
        this.enable = enable;
    }

    public int getSize() {
        return size;
    }

    public void setSize(int size) {
        this.size = size;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy