RiksdagenDocumentTypeSummaryEmbeddedId.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.data.document.impl;
import javax.persistence.Basic;
import javax.persistence.Column;
import javax.persistence.Embeddable;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
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 RiksdagenDocumentTypeSummaryEmbeddedId complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* <complexType name="RiksdagenDocumentTypeSummaryEmbeddedId">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="public_date" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="document_type" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "RiksdagenDocumentTypeSummaryEmbeddedId", propOrder = {
"publicDate",
"documentType"
})
@Embeddable
public class RiksdagenDocumentTypeSummaryEmbeddedId
implements ModelObject
{
/**
*
*/
private static final long serialVersionUID = 1L;
@XmlElement(name = "public_date", required = true)
protected String publicDate;
@XmlElement(name = "document_type", required = true)
protected String documentType;
/**
* Gets the value of the publicDate property.
*
* @return
* possible object is
* {@link String }
*
*/
@Basic
@Column(name = "PUBLIC_DATE")
public String getPublicDate() {
return publicDate;
}
/**
* Sets the value of the publicDate property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPublicDate(final String value) {
this.publicDate = value;
}
/**
* Gets the value of the documentType property.
*
* @return
* possible object is
* {@link String }
*
*/
@Basic
@Column(name = "DOCUMENT_TYPE")
public String getDocumentType() {
return documentType;
}
/**
* Sets the value of the documentType property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDocumentType(final String value) {
this.documentType = value;
}
public RiksdagenDocumentTypeSummaryEmbeddedId withPublicDate(final String value) {
setPublicDate(value);
return this;
}
public RiksdagenDocumentTypeSummaryEmbeddedId withDocumentType(final String value) {
setDocumentType(value);
return this;
}
@Override
public final String toString() {
return ToStringBuilder.reflectionToString(this, ToStringStyle.SHORT_PREFIX_STYLE);
}
@Override
public final boolean equals(final Object obj) {
return EqualsBuilder.reflectionEquals(this, obj);
}
@Override
public final int hashCode() {
return HashCodeBuilder.reflectionHashCode(this);
}
}