rsanchez
2014-10-01 182ddf022ebb56af558c82dd466b206097fea7c9
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
package net.curisit.securis.db;
import java.io.Serializable;
import java.util.Date;
import java.util.Set;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.FetchType;
import javax.persistence.GeneratedValue;
import javax.persistence.Id;
import javax.persistence.NamedQueries;
import javax.persistence.NamedQuery;
import javax.persistence.OneToMany;
import javax.persistence.Table;
import org.codehaus.jackson.annotate.JsonAutoDetect;
import org.codehaus.jackson.annotate.JsonIgnore;
import org.codehaus.jackson.map.annotate.JsonSerialize;
/**
 * Entity implementation class for Entity: application
 * 
 */
@JsonAutoDetect
@JsonSerialize(include = JsonSerialize.Inclusion.NON_NULL)
@Entity
@Table(name = "application")
@NamedQueries({
    @NamedQuery(name = "list-applications", query = "SELECT a FROM Application a")
})
public class Application implements Serializable {
    private static final long serialVersionUID = 1L;
    @Id
    @GeneratedValue
    private int id;
    private String name;
    private String description;
    @Column(name = "creation_timestamp")
    private Date creationTimestamp;
    @JsonIgnore
    // We don't include the referenced entities to limit the size of each row at
    // the listing
    @OneToMany(fetch = FetchType.LAZY, mappedBy = "application")
    private Set<LicenseType> licenseTypes;
    @JsonIgnore
    // We don't include the referenced entities to limit the size of each row at
    // the listing
    @OneToMany(fetch = FetchType.LAZY, mappedBy = "application")
    private Set<ApplicationMetadata> metadata;
    public int getId() {
        return id;
    }
    public void setId(int id) {
        this.id = id;
    }
    public String getName() {
        return name;
    }
    public void setName(String name) {
        this.name = name;
    }
    public String getDescription() {
        return description;
    }
    public void setDescription(String description) {
        this.description = description;
    }
    public Date getCreationTimestamp() {
        return creationTimestamp;
    }
    public void setCreationTimestamp(Date creationTimestamp) {
        this.creationTimestamp = creationTimestamp;
    }
    public Set<LicenseType> getLicenseTypes() {
        return licenseTypes;
    }
    public void setLicenseTypes(Set<LicenseType> licenseTypes) {
        this.licenseTypes = licenseTypes;
    }
    public Set<ApplicationMetadata> getApplicationMetadata() {
        return metadata;
    }
    public void setApplicationMetadata(Set<ApplicationMetadata> metadata) {
        this.metadata = metadata;
    }
}