rsanchez
2017-04-10 8d99c88af55041ff06e6b9372b6b1f66220bed38
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
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
package net.curisit.securis.db;
import java.io.Serializable;
import java.util.Arrays;
import java.util.Date;
import java.util.List;
import java.util.Map;
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.hibernate.annotations.Type;
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.JsonProperty;
import net.curisit.integrity.commons.Utils;
/**
 * Entity implementation class for Entity: pack
 * 
 */
@JsonAutoDetect
@JsonInclude(Include.NON_NULL)
@Entity
@Table(name = "pack")
@JsonIgnoreProperties(ignoreUnknown = true)
@NamedQueries({ @NamedQuery(name = "list-packs", query = "SELECT pa FROM Pack pa"), //
       @NamedQuery(name = "pack-by-code", query = "SELECT pa FROM Pack pa where pa.code = :code"), //
       @NamedQuery(name = "list-packs-by-lic-type", query = "SELECT pa FROM Pack pa where pa.licenseType.id = :lt_id"), //
       @NamedQuery(name = "list-packs-by-orgs-apps", query = "SELECT pa FROM Pack pa where pa.organization.id in :list_ids_org and pa.licenseType.application.id in :list_ids_app "), //
       @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 Integer id;
   private String code;
   private String comments;
   private Boolean frozen;
   @Column(name = "creation_timestamp")
   @JsonProperty("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.PERSIST, CascadeType.REMOVE, CascadeType.REFRESH }, mappedBy = "pack")
   private Set<License> licenses;
   @Column(name = "num_licenses")
   @JsonProperty("num_licenses")
   private int numLicenses;
   @Column(name = "init_valid_date")
   @JsonProperty("init_valid_date")
   private Date initValidDate;
   @Column(name = "end_valid_date")
   @JsonProperty("end_valid_date")
   private Date endValidDate;
   @Type(type = "net.curisit.securis.db.common.PackStatusType")
   private PackStatus status;
   @Column(name = "license_preactivation")
   @JsonProperty("license_preactivation")
   private boolean licensePreactivation;
   @Column(name = "preactivation_valid_period")
   @JsonProperty("preactivation_valid_period")
   private Integer preactivationValidPeriod;
   @Column(name = "renew_valid_period")
   @JsonProperty("renew_valid_period")
   private Integer renewValidPeriod;
   @OneToMany(fetch = FetchType.LAZY, cascade = { CascadeType.PERSIST, CascadeType.REMOVE, CascadeType.REFRESH }, mappedBy = "pack")
   private Set<PackMetadata> metadata;
   public Integer getId() {
       return id;
   }
   public void setId(Integer 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() == LicenseStatus.ACTIVE || lic.getStatus() == LicenseStatus.PRE_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() != LicenseStatus.CANCELLED) {
               num++;
           }
       }
       return num;
   }
   /**
    * Number of available licenses in this pack
    * 
    * @return
    */
   @JsonProperty("num_available")
   public int getNumAvailables() {
       return numLicenses - getNumActivations();
   }
   @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() != null ? createdBy.getLastName() : "", createdBy.getUsername());
   }
   @JsonProperty("licensetype_code")
   public String getLicenseTypeCode() {
       return licenseType == null ? null : licenseType.getCode();
   }
   public String getComments() {
       return comments;
   }
   public void setComments(String comments) {
       this.comments = comments;
   }
   public boolean isLicensePreactivation() {
       return licensePreactivation;
   }
   public void setLicensePreactivation(boolean licensePreactivation) {
       this.licensePreactivation = licensePreactivation;
   }
   public Set<PackMetadata> getMetadata() {
       return metadata;
   }
   public void setMetadata(Set<PackMetadata> metadata) {
       this.metadata = metadata;
   }
   public PackStatus getStatus() {
       return status;
   }
   public void setStatus(PackStatus status) {
       this.status = status;
   }
   public Date getInitValidDate() {
       return initValidDate;
   }
   public void setInitValidDate(Date initValidDate) {
       this.initValidDate = initValidDate;
   }
   public Date getEndValidDate() {
       return endValidDate;
   }
   public void setEndValidDate(Date endValidDate) {
       this.endValidDate = endValidDate;
   }
   public Set<License> getLicenses() {
       return licenses;
   }
   public void setLicenses(Set<License> licenses) {
       this.licenses = licenses;
   }
   public Integer getPreactivationValidPeriod() {
       return preactivationValidPeriod;
   }
   public void setPreactivationValidPeriod(Integer preactivationValidPeriod) {
       this.preactivationValidPeriod = preactivationValidPeriod;
   }
   public Integer getRenewValidPeriod() {
       return renewValidPeriod;
   }
   public void setRenewValidPeriod(Integer renewValidPeriod) {
       this.renewValidPeriod = renewValidPeriod;
   }
   @Override
   public boolean equals(Object obj) {
       if (!(obj instanceof Application))
           return false;
       return id.equals(Pack.class.cast(obj).id);
   }
   @Override
   public int hashCode() {
       return (id == null ? 0 : id.hashCode());
   }
   @Override
   public String toString() {
       return String.format("Pack: ID: %d, code: %s", id, code);
   }
   public boolean isFrozen() {
       return frozen != null && frozen;
   }
   public void setFrozen(Boolean frozen) {
       this.frozen = frozen;
   }
   public static class Action {
       public static final int CREATE = 1;
       public static final int ACTIVATION = 2;
       public static final int PUT_ONHOLD = 3;
       public static final int CANCEL = 4;
       public static final int DELETE = 5;
   }
   public static class Status {
       private static final Map<Integer, List<PackStatus>> transitions = Utils.createMap( //
               Action.ACTIVATION, Arrays.asList(PackStatus.CREATED, PackStatus.ON_HOLD, PackStatus.EXPIRED), //
               Action.PUT_ONHOLD, Arrays.asList(PackStatus.ACTIVE), //
               Action.CANCEL, Arrays.asList(PackStatus.ACTIVE, PackStatus.ON_HOLD, PackStatus.EXPIRED), //
               Action.DELETE, Arrays.asList(PackStatus.CANCELLED, PackStatus.CREATED) //
       );
       /**
        * It checks if a given action is valid for the License, passing the
        * action and the current license status
        * 
        * @param oldStatus
        * @param newStatus
        * @return
        */
       public static boolean isActionValid(Integer action, PackStatus currentStatus) {
           List<PackStatus> validStatuses = transitions.get(action);
           return validStatuses != null && validStatuses.contains(currentStatus);
       }
   }
}