Roberto Sánchez
2014-01-22 1a0d1f15efa2b4cbdc6dd30b5a85b111d0599b63
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
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
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.codehaus.jackson.annotate.JsonAutoDetect;
import org.codehaus.jackson.annotate.JsonIgnore;
import org.codehaus.jackson.annotate.JsonIgnoreProperties;
import org.codehaus.jackson.annotate.JsonProperty;
import org.codehaus.jackson.map.annotate.JsonSerialize;
/**
 * Entity implementation class for Entity: pack
 * 
 */
@JsonAutoDetect
@JsonSerialize(include = JsonSerialize.Inclusion.NON_NULL)
@Entity
@Table(name = "pack")
@JsonIgnoreProperties(ignoreUnknown = true)
@NamedQueries(
   { @NamedQuery(name = "list-packs", query = "SELECT pa FROM Pack pa"),//
           @NamedQuery(name = "list-packs-by-orgs", query = "SELECT pa FROM Pack pa where pa.organization.id in :list_ids") })
public class Pack implements Serializable {
   private static final long serialVersionUID = 1L;
   @Id
   @GeneratedValue
   private int id;
   private String code;
   private String comments;
   @Column(name = "creation_timestamp")
   private Date creationTimestamp;
   @JsonIgnore
   @ManyToOne
   @JoinColumn(name = "organization_id")
   private Organization organization;
   @JsonIgnore
   @ManyToOne
   @JoinColumn(name = "license_type_id")
   private LicenseType licenseType;
   @JsonIgnore
   @ManyToOne
   @JoinColumn(name = "created_by")
   private User createdBy;
   @JsonIgnore
   @OneToMany(fetch = FetchType.LAZY, cascade = CascadeType.ALL, mappedBy = "pack")
   private Set<License> licenses;
   @Column(name = "num_licenses")
   @JsonProperty("num_licenses")
   private int numLicenses;
   public int getId() {
       return id;
   }
   public void setId(int id) {
       this.id = id;
   }
   public String getCode() {
       return code;
   }
   public void setCode(String code) {
       this.code = code;
   }
   public Date getCreationTimestamp() {
       return creationTimestamp;
   }
   public void setCreationTimestamp(Date creationTimestamp) {
       this.creationTimestamp = creationTimestamp;
   }
   public Organization getOrganization() {
       return organization;
   }
   public void setOrganization(Organization organization) {
       this.organization = organization;
   }
   public LicenseType getLicenseType() {
       return licenseType;
   }
   public void setLicenseType(LicenseType licenseType) {
       this.licenseType = licenseType;
   }
   public User getCreatedBy() {
       return createdBy;
   }
   public void setCreatedBy(User createdBy) {
       this.createdBy = createdBy;
   }
   public int getNumLicenses() {
       return numLicenses;
   }
   public void setNumLicenses(int numLicenses) {
       this.numLicenses = numLicenses;
   }
   @JsonProperty("num_activations")
   public int getNumActivations() {
       if (licenses == null)
           return 0;
       int num = 0;
       for (License lic : licenses) {
           if (lic.getStatus() == License.Status.ACTIVE)
               num++;
       }
       return num;
   }
   /**
    * Counts all created licenses, It counts active licenses and licenses waiting for activation This number will be used to control the max number of licenses created. Ignore canceled licenses.
    * 
    * @return
    */
   @JsonProperty("num_creations")
   public int getNumCreations() {
       if (licenses == null)
           return 0;
       int num = 0;
       for (License lic : licenses) {
           if (lic.getStatus() != License.Status.CANCELED)
               num++;
       }
       return num;
   }
   /**
    * Number of available licenses in this pack
    * 
    * @return
    */
   @JsonProperty("num_available")
   public int getNumAvailables() {
       return numLicenses - getNumCreations();
   }
   @JsonProperty("organization_name")
   public String getOrgName() {
       return organization == null ? null : organization.getName();
   }
   @JsonProperty("application_name")
   public String getAppName() {
       if (licenseType == null)
           return null;
       Application app = licenseType.getApplication();
       return app == null ? null : app.getName();
   }
   @JsonProperty("organization_id")
   public Integer getOrgId() {
       return organization == null ? null : organization.getId();
   }
   @JsonProperty("organization_id")
   public void setOrgId(Integer idOrg) {
       if (idOrg == null) {
           organization = null;
       } else {
           organization = new Organization();
           organization.setId(idOrg);
       }
   }
   @JsonProperty("license_type_id")
   public void setLicTypeId(Integer idLT) {
       if (idLT == null) {
           licenseType = null;
       } else {
           licenseType = new LicenseType();
           licenseType.setId(idLT);
       }
   }
   @JsonProperty("license_type_id")
   public Integer getLicTypeId() {
       return licenseType == null ? null : licenseType.getId();
   }
   @JsonProperty("created_by_id")
   public String getCreatedById() {
       return createdBy == null ? null : createdBy.getUsername();
   }
   @JsonProperty("created_by_id")
   public void setCreatedById(String username) {
       createdBy = new User();
       createdBy.setUsername(username);
   }
   @JsonProperty("created_by_name")
   public String getCreatedByname() {
       return createdBy == null ? null : String.format("%s %s (%s)", createdBy.getFirstName(), createdBy.getLastName(), createdBy.getUsername());
   }
   @JsonProperty("licensetype_code")
   public String getLicenseTypcode() {
       return licenseType == null ? null : licenseType.getCode();
   }
   public String getComments() {
       return comments;
   }
   public void setComments(String comments) {
       this.comments = comments;
   }
}