Agency.java
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2019.02.25 at 12:05:09 AM CET
//
package com.hack23.cia.model.internal.application.system.impl;
import java.util.ArrayList;
import java.util.List;
import javax.persistence.Basic;
import javax.persistence.CascadeType;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.Inheritance;
import javax.persistence.InheritanceType;
import javax.persistence.JoinColumn;
import javax.persistence.OneToMany;
import javax.persistence.Table;
import javax.persistence.Version;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
import com.hack23.cia.model.common.api.ModelObject;
/**
* <p>Java class for Agency complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* <complexType name="Agency">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="modelObjectId" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* <element name="modelObjectVersion" type="{http://www.w3.org/2001/XMLSchema}int"/>
* <element name="agencyName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="portals" type="{http://system.application.internal.model.cia.hack23.com/impl}Portal" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Agency", propOrder = {
"modelObjectId",
"modelObjectVersion",
"agencyName",
"description",
"portals"
})
@Entity(name = "Agency")
@Table(name = "AGENCY")
@Inheritance(strategy = InheritanceType.JOINED)
public class Agency
implements ModelObject
{
/**
*
*/
private static final long serialVersionUID = 1L;
protected Integer modelObjectId;
protected int modelObjectVersion;
protected String agencyName;
protected String description;
@XmlElement(nillable = true)
protected List<Portal> portals;
@XmlAttribute(name = "Hjid")
protected Long hjid;
/**
* Gets the value of the modelObjectId property.
*
* @return
* possible object is
* {@link Integer }
*
*/
@Basic
@Column(name = "MODEL_OBJECT_ID", precision = 10, scale = 0)
public Integer getModelObjectId() {
return modelObjectId;
}
/**
* Sets the value of the modelObjectId property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setModelObjectId(final Integer value) {
this.modelObjectId = value;
}
/**
* Gets the value of the modelObjectVersion property.
*
*/
@Version
@Column(name = "MODEL_OBJECT_VERSION")
public int getModelObjectVersion() {
return modelObjectVersion;
}
/**
* Sets the value of the modelObjectVersion property.
*
*/
public void setModelObjectVersion(final int value) {
this.modelObjectVersion = value;
}
/**
* Gets the value of the agencyName property.
*
* @return
* possible object is
* {@link String }
*
*/
@Basic
@Column(name = "AGENCY_NAME")
public String getAgencyName() {
return agencyName;
}
/**
* Sets the value of the agencyName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setAgencyName(final String value) {
this.agencyName = value;
}
/**
* Gets the value of the description property.
*
* @return
* possible object is
* {@link String }
*
*/
@Basic
@Column(name = "DESCRIPTION")
public String getDescription() {
return description;
}
/**
* Sets the value of the description property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDescription(final String value) {
this.description = value;
}
/**
* Gets the value of the portals property.
*
* <p>
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a <CODE>set</CODE> method for the portals property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getPortals().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link Portal }
*
*
*/
@OneToMany(targetEntity = Portal.class, cascade = {
CascadeType.ALL
})
@JoinColumn(name = "PORTALS_AGENCY_HJID")
public List<Portal> getPortals() {
if (portals == null) {
portals = new ArrayList<>();
}
return this.portals;
}
/**
*
*
*/
public void setPortals(final List<Portal> portals) {
this.portals = portals;
}
public Agency withModelObjectId(final Integer value) {
setModelObjectId(value);
return this;
}
public Agency withModelObjectVersion(final int value) {
setModelObjectVersion(value);
return this;
}
public Agency withAgencyName(final String value) {
setAgencyName(value);
return this;
}
public Agency withDescription(final String value) {
setDescription(value);
return this;
}
public Agency withPortals(final List<Portal> portals) {
setPortals(portals);
return this;
}
@Override
public final String toString() {
return ToStringBuilder.reflectionToString(this, ToStringStyle.SHORT_PREFIX_STYLE);
}
/**
* Gets the value of the hjid property.
*
* @return
* possible object is
* {@link Long }
*
*/
@Id
@Column(name = "HJID")
@GeneratedValue(strategy = GenerationType.AUTO)
public Long getHjid() {
return hjid;
}
/**
* Sets the value of the hjid property.
*
* @param value
* allowed object is
* {@link Long }
*
*/
public void setHjid(final Long value) {
this.hjid = value;
}
@Override
public final boolean equals(final Object obj) {
return EqualsBuilder.reflectionEquals(this, obj);
}
@Override
public final int hashCode() {
return HashCodeBuilder.reflectionHashCode(this);
}
}