rsanchez
2017-03-24 4f5711b8ec555ab8307516ce178b454445d3833f
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
package net.curisit.securis.db;
import java.io.Serializable;
import java.util.Date;
import java.util.Set;
import javax.persistence.CascadeType;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.FetchType;
import javax.persistence.GeneratedValue;
import javax.persistence.Id;
import javax.persistence.JoinColumn;
import javax.persistence.ManyToOne;
import javax.persistence.NamedQueries;
import javax.persistence.NamedQuery;
import javax.persistence.OneToMany;
import javax.persistence.Table;
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
import com.fasterxml.jackson.annotation.JsonAutoDetect;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonInclude.Include;
import com.fasterxml.jackson.annotation.JsonManagedReference;
import com.fasterxml.jackson.annotation.JsonProperty;
/**
 * Entity implementation class for Entity: license_type
 * 
 */
@JsonAutoDetect
@JsonInclude(Include.NON_NULL)
@JsonIgnoreProperties(ignoreUnknown = true)
@Entity
@Table(name = "license_type")
@NamedQueries({ @NamedQuery(name = "list-license_types", query = "SELECT lt FROM LicenseType lt"),
       @NamedQuery(name = "list-application-license_types", query = "SELECT lt FROM LicenseType lt where lt.application.id = :appId") })
public class LicenseType implements Serializable {
   @SuppressWarnings("unused")
   private static final Logger LOG = LogManager.getLogger(LicenseType.class);
   private static final long serialVersionUID = 1L;
   @Id
   @GeneratedValue
   private Integer id;
   private String code;
   private String name;
   private String description;
   @Column(name = "creation_timestamp")
   @JsonProperty("creation_timestamp")
   private Date creationTimestamp;
   @JsonIgnore
   @ManyToOne(fetch = FetchType.LAZY)
   @JoinColumn(name = "application_id")
   private Application application;
   @OneToMany(fetch = FetchType.LAZY, cascade = { CascadeType.PERSIST, CascadeType.REMOVE, CascadeType.REFRESH }, mappedBy = "licenseType")
   @JsonManagedReference
   private Set<LicenseTypeMetadata> metadata;
   public Set<LicenseTypeMetadata> getMetadata() {
       return metadata;
   }
   public void setMetadata(Set<LicenseTypeMetadata> metadata) {
       this.metadata = metadata;
   }
   public Integer getId() {
       return id;
   }
   public void setId(Integer 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 String getCode() {
       return code;
   }
   public void setCode(String code) {
       this.code = code;
   }
   public Application getApplication() {
       return application;
   }
   @JsonProperty("application_name")
   public String getApplicationName() {
       return application == null ? null : application.getName();
   }
   @JsonProperty("application_id")
   public Integer getApplicationId() {
       return application == null ? null : application.getId();
   }
   @JsonProperty("application_id")
   public void setApplicationId(Integer appId) {
       if (appId == null) {
           application = null;
       } else {
           application = new Application();
           application.setId(appId);
       }
   }
   public void setApplication(Application application) {
       this.application = application;
   }
   public Date getCreationTimestamp() {
       return creationTimestamp;
   }
   public void setCreationTimestamp(Date creationTimestamp) {
       this.creationTimestamp = creationTimestamp;
   }
   @Override
   public boolean equals(Object obj) {
       if (!(obj instanceof LicenseType))
           return false;
       LicenseType other = (LicenseType) obj;
       return id.equals(other.id);
   }
   @Override
   public int hashCode() {
       return (id == null ? 0 : id.hashCode());
   }
   @Override
   public String toString() {
       return String.format("LT: ID: %d, code: %s", id, code);
   }
}