/** * */ package vn.mobileid.fms.client; // TODO: Auto-generated Javadoc /** * The Class JCRConfigSystem. * * @author ThaoTruong * @created Oct 9, 2018 */ public class JCRConfigSystem { /** The max session. */ private int maxSession; /** The max file in folder. */ private int maxFileInFolder; /** * Gets the max session. * * @return the max session */ public int getMaxSession() { return maxSession; } /** * Sets the max session. * * @param maxSession the new max session */ public void setMaxSession(int maxSession) { this.maxSession = maxSession; } /** * Gets the max file in folder. * * @return the max file in folder */ public int getMaxFileInFolder() { return maxFileInFolder; } /** * Sets the max file in folder. * * @param maxFileInFolder the new max file in folder */ public void setMaxFileInFolder(int maxFileInFolder) { this.maxFileInFolder = maxFileInFolder; } }