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

com.networknt.codegen.CodegenWebConfig Maven / Gradle / Ivy

There is a newer version: 2.1.37
Show newest version
package com.networknt.codegen;

/**
 * Created by steve on 22/10/16.
 */
public class CodegenWebConfig {
    String tmpFolder;
    String zipFolder;
    int zipKeptMinute;

    public CodegenWebConfig() {
    }

    public String getTmpFolder() {
        return tmpFolder;
    }

    public void setTmpFolder(String tmpFolder) {
        this.tmpFolder = tmpFolder;
    }

    public String getZipFolder() {
        return zipFolder;
    }

    public void setZipFolder(String zipFolder) {
        this.zipFolder = zipFolder;
    }

    public int getZipKeptMinute() {
        return zipKeptMinute;
    }

    public void setZipKeptMinute(int zipKeptMinute) {
        this.zipKeptMinute = zipKeptMinute;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy