rsanchez
2014-11-14 1371dd17f28f3342d02383df8f80e152c0cdd995
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
package net.curisit.securis.db;
import java.io.Serializable;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.Id;
import javax.persistence.JoinColumn;
import javax.persistence.ManyToOne;
import javax.persistence.NamedQueries;
import javax.persistence.NamedQuery;
import javax.persistence.Table;
import com.fasterxml.jackson.annotation.JsonAutoDetect;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonInclude.Include;
import com.fasterxml.jackson.annotation.JsonProperty;
/**
 * Entity implementation class for Entity: licensetype_metadata
 * 
 */
@JsonAutoDetect
@JsonInclude(Include.NON_NULL)
@Entity
@Table(name = "licensetype_metadata")
@NamedQueries({
    @NamedQuery(name = "list-licensetype-metadata", query = "SELECT a FROM LicenseTypeMetadata a where a.licenseType.id = :licenseTypeId")
})
public class LicenseTypeMetadata implements Serializable {
    private static final long serialVersionUID = 1L;
    @Id
    @JsonIgnore
    @ManyToOne
    @JoinColumn(name = "license_type_id")
    private LicenseType licenseType;
    @Id
    @Column(name = "\"key\"")
    private String key;
    private String value;
    private boolean mandatory;
    @JsonProperty("licensetype_id")
    public Integer getLicenseTypeId() {
        return licenseType == null ? null : licenseType.getId();
    }
    @JsonProperty("licensetype_id")
    public void setLicenseTypeId(Integer idLicenseType) {
        if (idLicenseType == null) {
            licenseType = null;
        } else {
            licenseType = new LicenseType();
            licenseType.setId(idLicenseType);
        }
    }
    public LicenseType getLicenseType() {
        return licenseType;
    }
    public void setLicenseType(LicenseType licenseType) {
        this.licenseType = licenseType;
    }
    public String getValue() {
        return value;
    }
    public void setValue(String value) {
        this.value = value;
    }
    public String getKey() {
        return key;
    }
    public void setKey(String key) {
        this.key = key;
    }
    @Override
    public boolean equals(Object obj) {
        if (!(obj instanceof LicenseTypeMetadata))
            return false;
        LicenseTypeMetadata other = (LicenseTypeMetadata) obj;
        return key.equals(other.key) && (licenseType == null || licenseType.equals(other.licenseType));
    }
    @Override
    public int hashCode() {
        return key.hashCode() + (licenseType == null ? 0 : licenseType.hashCode());
    }
    public boolean isMandatory() {
        return mandatory;
    }
    public void setMandatory(boolean mandatory) {
        this.mandatory = mandatory;
    }
}