1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
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;
    }
}