package net.curisit.securis.db; import java.io.Serializable; import javax.persistence.Entity; 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.Table; import org.codehaus.jackson.annotate.JsonAutoDetect; import org.codehaus.jackson.annotate.JsonIgnore; import org.codehaus.jackson.annotate.JsonProperty; import org.codehaus.jackson.map.annotate.JsonSerialize; /** * Entity implementation class for Entity: licensetype_metadata * */ @JsonAutoDetect @JsonSerialize(include = JsonSerialize.Inclusion.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 @GeneratedValue private int id; private String key; private String value; @JsonIgnore @ManyToOne @JoinColumn(name = "license_type_id") private LicenseType licenseType; public int getId() { return id; } public void setId(int id) { this.id = id; } @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; } }