Joaquín Reñé
2026-03-27 4ee50e257b32f6ec0f72907305d1f2b1212808a4
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
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
/*
* Copyright @ 2013 CurisTEC, S.A.S. All Rights Reserved.
*/
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 jakarta.persistence.CascadeType;
import jakarta.persistence.Column;
import jakarta.persistence.Entity;
import jakarta.persistence.FetchType;
import jakarta.persistence.GeneratedValue;
import jakarta.persistence.Id;
import jakarta.persistence.JoinColumn;
import jakarta.persistence.ManyToOne;
import jakarta.persistence.NamedQueries;
import jakarta.persistence.NamedQuery;
import jakarta.persistence.OneToMany;
import jakarta.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;
/**
* Pack
* <p>
* Group/bundle of licenses for an organization and application (via LicenseType).
* Tracks capacity, availability, status, and validity windows.
*
* Mapping details:
* - Table: pack
* - ManyToOne to Organization, LicenseType, User (createdBy)
* - OneToMany licenses (lazy)
* - Custom type: net.curisit.securis.db.common.PackStatusType
* - Named queries for listing and filtering by org/app.
* @author JRA
* Last reviewed by JRA on Oct 5, 2025.
*/
@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-apps", query = "SELECT pa FROM Pack pa where pa.licenseType.application.id in :list_ids_app ")
})
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;
    // ---------------- Getters & setters ----------------
    /** 
     * getId<p>
     * Return primary key. 
     * 
     * @return id
     */
    public Integer getId() { return id; }
    /** 
     * setId<p>
     * Set primary key. 
     * 
     * @param id
     */
    public void setId(Integer id) { this.id = id; }
    /** 
     * getCode<p>
     * Return pack code. 
     * 
     * @return packCode
     */
    public String getCode() { return code; }
    /** 
     * setCode<p>
     * Set pack code. 
     * 
     * @param packCode
     */
    public void setCode(String code) { this.code = code; }
    /** 
     * getCreationTimestamp<p>
     * Return creation timestamp. 
     * 
     * @return creationTimestamp
     */
    public Date getCreationTimestamp() { return creationTimestamp; }
    /** 
     * setCreationTimestamp<p>
     * Set creation timestamp.
     * 
     *  @param creationTimestamp
     */
    public void setCreationTimestamp(Date creationTimestamp) { this.creationTimestamp = creationTimestamp; }
    /** 
     * getOrganization<p>
     * Return owning organization (entity). 
     * 
     * @return organization
     */
    public Organization getOrganization() { return organization; }
    /** 
     * setOrganization<p>
     * Set owning organization (entity). 
     * 
     * @param organization
     */
    public void setOrganization(Organization organization) { this.organization = organization; }
    /** 
     * getLicenseType<p>
     * Return license type (entity). 
     * 
     * @return licenseType
     */
    public LicenseType getLicenseType() { return licenseType; }
    /** 
     * setLicenseType<p>
     * Set license type (entity). 
     * 
     * @param licenseType
     */
    public void setLicenseType(LicenseType licenseType) { this.licenseType = licenseType; }
    /** 
     * getCreatedBy<p>
     * Return creator (entity). 
     * 
     * @return user
     */
    public User getCreatedBy() { return createdBy; }
    /** 
     * setCreatedBy<p>
     * Set creator (entity). 
     * 
     * @param user
     */
    public void setCreatedBy(User createdBy) { this.createdBy = createdBy; }
    /** 
     * getNumLicenses<p>
     * Return capacity (licenses). 
     * 
     * @return numLicenses
     *            Number of licenses
     */
    public int getNumLicenses() { return numLicenses; }
    /** 
     * setNumLicenses<p>
     * Set capacity (licenses). 
     * 
     * @param numLicenses
     *           Number of licenses
     */
    public void setNumLicenses(int numLicenses) { this.numLicenses = numLicenses; }
    /** 
     * getNumActivations<p>
     * Count ACTIVE/PRE_ACTIVE licenses in this pack. 
     * 
     * @return numActivations
     *             number of activated licenses
     */
    @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;
    }
    /**
    * getNumCreations<p>
    * Count all created licenses (including waiting for activation). Ignores CANCELLED.
    *
    * @return numCreations
    *            number of created licenses
    */
    @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;
    }
    /**
    * getNumAvailables<p>
    * Number of available licenses in this pack: capacity - activations.
    * 
    * @return numAvailable 
    *                 Number of available licenses
    */
    @JsonProperty("num_available")
    public int getNumAvailables() { return numLicenses - getNumActivations(); }
    /** 
     * getOrgName<p>
     * Expose organization name. 
     * 
     * @return orgName
     */
    @JsonProperty("organization_name")
    public String getOrgName() { return organization == null ? null : organization.getName(); }
    /** 
     * getAppName<p>
     * Expose application name via license type. 
     * 
     * @return appName
     */
    @JsonProperty("application_name")
    public String getAppName() {
        if (licenseType == null) return null;
        Application app = licenseType.getApplication();
        return app == null ? null : app.getName();
    }
    /** 
     * getOrgId<p>
     * Expose organization id. 
     * 
     * @return orgId
     */
    @JsonProperty("organization_id")
    public Integer getOrgId() { return organization == null ? null : organization.getId(); }
    /** 
     * setOrgId<p>
     * Setter by id for JSON binding (creates shallow Organization). 
     * 
     * @param orgId
     */
    @JsonProperty("organization_id")
    public void setOrgId(Integer idOrg) {
        if (idOrg == null) {
            organization = null;
        } else {
            organization = new Organization();
            organization.setId(idOrg);
        }
    }
    /** 
     * setLicTypeId<p>
     * Setter by id for JSON binding (creates shallow LicenseType). 
     * 
     * @param licTypeId
     */
    @JsonProperty("license_type_id")
    public void setLicTypeId(Integer idLT) {
        if (idLT == null) {
            licenseType = null;
        } else {
            licenseType = new LicenseType();
            licenseType.setId(idLT);
        }
    }
    /** 
     * getLicTypeId<p>
     * Expose license type id. 
     * 
     * @return licTypeId
     */
    @JsonProperty("license_type_id")
    public Integer getLicTypeId() { return licenseType == null ? null : licenseType.getId(); }
    /** 
     * getCreatedById<p>
     * Expose creator username. 
     * 
     * @return username
     */
    @JsonProperty("created_by_id")
    public String getCreatedById() { return createdBy == null ? null : createdBy.getUsername(); }
    /** 
     * setCreatedById<p>
     * Setter by username (creates shallow User). 
     * 
     * @param username
     */
    @JsonProperty("created_by_id")
    public void setCreatedById(String username) {
        createdBy = new User();
        createdBy.setUsername(username);
    }
    /** 
     * getCreatedByname<p>
     * Expose creator full display name. 
     * 
     * @return 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());
    }
    /** 
     * getLicenseTypeCode<p>
     * Expose license type code. 
     * 
     * @return licenseTypeCode
     */
    @JsonProperty("licensetype_code")
    public String getLicenseTypeCode() { return licenseType == null ? null : licenseType.getCode(); }
    /** 
     * getComments<p>
     * Return comments. 
     * 
     * @return comments
     */
    public String getComments() { return comments; }
    /** 
     * setComments<p>
     * Set comments. 
     * 
     * @param comments
     */
    public void setComments(String comments) { this.comments = comments; }
    /** 
     * isLicensePreactivation<p>
     * Whether licenses are pre-activated. 
     * 
     * @return isLicensePreactivation
     */
    public boolean isLicensePreactivation() { return licensePreactivation; }
    /** 
     * setLicensePreactivation<p>
     * Set pre-activation flag. 
     * 
     * @param licensePreactivation
     */
    public void setLicensePreactivation(boolean licensePreactivation) { this.licensePreactivation = licensePreactivation; }
    /** 
     * getMetadata<p>
     * Return pack metadata entries. 
     * 
     * @return metadata
     */
    public Set<PackMetadata> getMetadata() { return metadata; }
    /** 
     * setMetadata<p>
     * Set pack metadata entries. 
     * 
     * @param metadata
     */
    public void setMetadata(Set<PackMetadata> metadata) { this.metadata = metadata; }
    /** 
     * getStatus<p>
     * Return pack status. 
     * 
     * @return packStatus
     */
    public PackStatus getStatus() { return status; }
    /** 
     * setStatus<p>
     * Set pack status. 
     * 
     * @param packStatus
     */
    public void setStatus(PackStatus status) { this.status = status; }
    /** 
     * getInitValidDate<p>
     * Return start of validity window. 
     * 
     * @return initValidDate
     */
    public Date getInitValidDate() { return initValidDate; }
    /** 
     * setInitValidDate<p>
     * Set start of validity window. 
     * 
     * @param initValidDate
     */
    public void setInitValidDate(Date initValidDate) { this.initValidDate = initValidDate; }
    /** 
     * getEndValidDate<p>
     * Return end of validity window. 
     * 
     * @return endValidDate
     */
    public Date getEndValidDate() { return endValidDate; }
    /** 
     * setEndValidDate<p>
     * Set end of validity window. 
     * 
     * @param endValidDate
     */
    public void setEndValidDate(Date endValidDate) { this.endValidDate = endValidDate; }
    /** 
     * getLicenses<p>
     * Return contained licenses (entity set). 
     * 
     * @return licenses
     */
    public Set<License> getLicenses() { return licenses; }
    /** 
     * setLicenses<p>
     * Set contained licenses (entity set). 
     * 
     * @param licenses
     */
    public void setLicenses(Set<License> licenses) { this.licenses = licenses; }
    /** 
     * getPreactivationValidPeriod<p>
     * Return preactivation validity (days). 
     * 
     * @return preactivationValidPeriod
     */
    public Integer getPreactivationValidPeriod() { return preactivationValidPeriod; }
    /** 
     * setPreactivationValidPeriod<p>
     * Set preactivation validity (days). 
     * 
     * @param preactivationValidPeriod
     */
    public void setPreactivationValidPeriod(Integer preactivationValidPeriod) { this.preactivationValidPeriod = preactivationValidPeriod; }
    /** 
     * getRenewValidPeriod<p>
     * Return renewal validity (days). 
     * 
     * @return renewValidPeriod
     */
    public Integer getRenewValidPeriod() { return renewValidPeriod; }
    /** 
     * setRenewValidPeriod<p>
     * Set renewal validity (days). 
     * 
     * @param renewValidPeriod
     */
    public void setRenewValidPeriod(Integer renewValidPeriod) { this.renewValidPeriod = renewValidPeriod; }
    // ---------------- Object methods ----------------
    /**
     * equals<p>
     * Compare the current object with the given object
     * 
     * @param object
     * @return isEquals
     */
    @Override
    public boolean equals(Object obj) {
        if (!(obj instanceof Application)) return false;
        return id != null && id.equals(Pack.class.cast(obj).id);
    }
    /**
     * hashCode<p>
     * Get the object hashCode
     * 
     * @return hashCode
     */
    @Override
    public int hashCode() { return (id == null ? 0 : id.hashCode()); }
    /**
     * toString<p>
     * Get the string describing the current object
     * 
     * @return object string
     */
    @Override
    public String toString() { return String.format("Pack: ID: %d, code: %s", id, code); }
    /** 
     * isFrozen<p>
     * Null-safe boolean getter. 
     * 
     * @return isFrozen
     */
    public boolean isFrozen() { return frozen != null && frozen; }
    /** 
     * setFrozen<p>
     * Set frozen flag (nullable wrapper). 
     * 
     * @param frozen
     */
    public void setFrozen(Boolean frozen) { this.frozen = frozen; }
    // ---------------- Status transitions ----------------
    /**
     * Action<p>
     * Available actions for the Pack
     */
    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;
    }
    /**
     * Status<p>
     * Pack status
     */
    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)
        );
        /**
        * isActionValid<p>
        * Validate whether an action is allowed given the current pack status.
        *
        * @param action action constant
        * @param currentStatus current pack status
        * @return true if allowed
        */
        public static boolean isActionValid(Integer action, PackStatus currentStatus) {
            List<PackStatus> validStatuses = transitions.get(action);
            return validStatuses != null && validStatuses.contains(currentStatus);
        }
    }
}