package com.vci.server.framework.appConfig;
|
|
import java.util.LinkedHashSet;
|
import java.util.Set;
|
|
import com.vci.common.objects.AbstractHistorizable;
|
|
/**
|
* AppConfigCategory Hibernate Object
|
*
|
*/
|
public class AppConfigCategory extends AbstractHistorizable implements java.io.Serializable {
|
/**
|
*
|
*/
|
private static final long serialVersionUID = 1L;
|
private String id = "";
|
private String name = "";
|
private String desc = "";
|
private Set<AppConfigDetail> details = new LinkedHashSet<AppConfigDetail>();
|
|
public AppConfigCategory() {
|
}
|
|
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 Set<AppConfigDetail> getDetails() {
|
return details;
|
}
|
|
public void setDetails(Set<AppConfigDetail> details) {
|
this.details = details;
|
}
|
}
|