ApplicationConfiguration.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.Date;
import javax.persistence.Basic;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.EnumType;
import javax.persistence.Enumerated;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.Inheritance;
import javax.persistence.InheritanceType;
import javax.persistence.Table;
import javax.persistence.Temporal;
import javax.persistence.TemporalType;
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.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
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;
import com.hack23.cia.model.common.impl.xml.XmlDateTimeTypeAdapter;
/**
* <p>Java class for ApplicationConfiguration complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* <complexType name="ApplicationConfiguration">
* <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="configTitle" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="configDescription" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="configurationGroup" type="{http://system.application.internal.model.cia.hack23.com/impl}ConfigurationGroup" minOccurs="0"/>
* <element name="component" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="componentTitle" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="componentDescription" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="propertyId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="propertyValue" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="createdDate" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
* <element name="updatedDate" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ApplicationConfiguration", propOrder = {
"modelObjectId",
"modelObjectVersion",
"configTitle",
"configDescription",
"configurationGroup",
"component",
"componentTitle",
"componentDescription",
"propertyId",
"propertyValue",
"createdDate",
"updatedDate"
})
@Entity(name = "ApplicationConfiguration")
@Table(name = "application_configuration")
@Inheritance(strategy = InheritanceType.JOINED)
public class ApplicationConfiguration
implements ModelObject
{
/**
*
*/
private static final long serialVersionUID = 1L;
protected Integer modelObjectId;
protected int modelObjectVersion;
protected String configTitle;
protected String configDescription;
@XmlSchemaType(name = "string")
protected ConfigurationGroup configurationGroup;
protected String component;
protected String componentTitle;
protected String componentDescription;
protected String propertyId;
protected String propertyValue;
@XmlElement(type = String.class)
@XmlJavaTypeAdapter(XmlDateTimeTypeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected Date createdDate;
@XmlElement(type = String.class)
@XmlJavaTypeAdapter(XmlDateTimeTypeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected Date updatedDate;
@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 configTitle property.
*
* @return
* possible object is
* {@link String }
*
*/
@Basic
@Column(name = "CONFIG_TITLE")
public String getConfigTitle() {
return configTitle;
}
/**
* Sets the value of the configTitle property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setConfigTitle(final String value) {
this.configTitle = value;
}
/**
* Gets the value of the configDescription property.
*
* @return
* possible object is
* {@link String }
*
*/
@Basic
@Column(name = "CONFIG_DESCRIPTION")
public String getConfigDescription() {
return configDescription;
}
/**
* Sets the value of the configDescription property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setConfigDescription(final String value) {
this.configDescription = value;
}
/**
* Gets the value of the configurationGroup property.
*
* @return
* possible object is
* {@link ConfigurationGroup }
*
*/
@Basic
@Column(name = "CONFIGURATION_GROUP")
@Enumerated(EnumType.STRING)
public ConfigurationGroup getConfigurationGroup() {
return configurationGroup;
}
/**
* Sets the value of the configurationGroup property.
*
* @param value
* allowed object is
* {@link ConfigurationGroup }
*
*/
public void setConfigurationGroup(final ConfigurationGroup value) {
this.configurationGroup = value;
}
/**
* Gets the value of the component property.
*
* @return
* possible object is
* {@link String }
*
*/
@Basic
@Column(name = "COMPONENT")
public String getComponent() {
return component;
}
/**
* Sets the value of the component property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setComponent(final String value) {
this.component = value;
}
/**
* Gets the value of the componentTitle property.
*
* @return
* possible object is
* {@link String }
*
*/
@Basic
@Column(name = "COMPONENT_TITLE")
public String getComponentTitle() {
return componentTitle;
}
/**
* Sets the value of the componentTitle property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setComponentTitle(final String value) {
this.componentTitle = value;
}
/**
* Gets the value of the componentDescription property.
*
* @return
* possible object is
* {@link String }
*
*/
@Basic
@Column(name = "COMPONENT_DESCRIPTION")
public String getComponentDescription() {
return componentDescription;
}
/**
* Sets the value of the componentDescription property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setComponentDescription(final String value) {
this.componentDescription = value;
}
/**
* Gets the value of the propertyId property.
*
* @return
* possible object is
* {@link String }
*
*/
@Basic
@Column(name = "PROPERTY_ID")
public String getPropertyId() {
return propertyId;
}
/**
* Sets the value of the propertyId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPropertyId(final String value) {
this.propertyId = value;
}
/**
* Gets the value of the propertyValue property.
*
* @return
* possible object is
* {@link String }
*
*/
@Basic
@Column(name = "PROPERTY_VALUE")
public String getPropertyValue() {
return propertyValue;
}
/**
* Sets the value of the propertyValue property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPropertyValue(final String value) {
this.propertyValue = value;
}
/**
* Gets the value of the createdDate property.
*
* @return
* possible object is
* {@link String }
*
*/
@Basic
@Column(name = "CREATED_DATE")
@Temporal(TemporalType.TIMESTAMP)
public Date getCreatedDate() {
return createdDate;
}
/**
* Sets the value of the createdDate property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCreatedDate(final Date value) {
this.createdDate = value;
}
/**
* Gets the value of the updatedDate property.
*
* @return
* possible object is
* {@link String }
*
*/
@Basic
@Column(name = "UPDATED_DATE")
@Temporal(TemporalType.TIMESTAMP)
public Date getUpdatedDate() {
return updatedDate;
}
/**
* Sets the value of the updatedDate property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setUpdatedDate(final Date value) {
this.updatedDate = value;
}
public ApplicationConfiguration withModelObjectId(final Integer value) {
setModelObjectId(value);
return this;
}
public ApplicationConfiguration withModelObjectVersion(final int value) {
setModelObjectVersion(value);
return this;
}
public ApplicationConfiguration withConfigTitle(final String value) {
setConfigTitle(value);
return this;
}
public ApplicationConfiguration withConfigDescription(final String value) {
setConfigDescription(value);
return this;
}
public ApplicationConfiguration withConfigurationGroup(final ConfigurationGroup value) {
setConfigurationGroup(value);
return this;
}
public ApplicationConfiguration withComponent(final String value) {
setComponent(value);
return this;
}
public ApplicationConfiguration withComponentTitle(final String value) {
setComponentTitle(value);
return this;
}
public ApplicationConfiguration withComponentDescription(final String value) {
setComponentDescription(value);
return this;
}
public ApplicationConfiguration withPropertyId(final String value) {
setPropertyId(value);
return this;
}
public ApplicationConfiguration withPropertyValue(final String value) {
setPropertyValue(value);
return this;
}
public ApplicationConfiguration withCreatedDate(final Date value) {
setCreatedDate(value);
return this;
}
public ApplicationConfiguration withUpdatedDate(final Date value) {
setUpdatedDate(value);
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);
}
}