package com.vci.client.framework.appConfig.object; import java.util.*; /** * AppConfigCategory Client Object * */ public class AppConfigCategoryObject implements java.io.Serializable { /** * */ private static final long serialVersionUID = 1L; private String id = ""; private String name = ""; private String desc = ""; public AppConfigCategoryObject(){ } public String getId(){ return this.id; } public void setId(String val){ this.id = val; } public String getName(){ return this.name; } public void setName(String val){ this.name = val; } public String getDesc(){ return this.desc; } public void setDesc(String val){ this.desc = val; } public String toString() { return this.name; } }