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

pl.fhframework.docs.application.cache.ApplicationCacheModel Maven / Gradle / Ivy

package pl.fhframework.docs.application.cache;

import lombok.Getter;
import lombok.Setter;

import java.util.ArrayList;
import java.util.List;

/**
 * Created by Adam Zareba on 02.02.2017.
 */
@Getter
@Setter
public class ApplicationCacheModel {
    List appProps = new ArrayList<>();

    List cacheProps = new ArrayList<>();

    List jgroupsProps = new ArrayList<>();
}

@Getter
@Setter
class StaticTableData {
    String value1;

    String value2;

    String value3;

    String value4;

    String value5;

    String value6;

    String value7;

    public StaticTableData() {
    }

    public StaticTableData(String value1, String value2) {
        this.value1 = value1;
        this.value2 = value2;
    }

    public StaticTableData(String value1, String value2, String value3) {
        this.value1 = value1;
        this.value2 = value2;
        this.value3 = value3;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy