ViewRiksdagenCommitteeBallotDecisionPartyEmbeddedId.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.committee.impl;
import java.math.BigDecimal;
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 ViewRiksdagenCommitteeBallotDecisionPartyEmbeddedId complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* <complexType name="ViewRiksdagenCommitteeBallotDecisionPartyEmbeddedId">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="id" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="party" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="hangar_id" type="{http://www.w3.org/2001/XMLSchema}decimal"/>
* <element name="issue" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="concern" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ViewRiksdagenCommitteeBallotDecisionPartyEmbeddedId", propOrder = {
"id",
"party",
"hangarId",
"issue",
"concern"
})
@Embeddable
public class ViewRiksdagenCommitteeBallotDecisionPartyEmbeddedId
implements ModelObject
{
/**
*
*/
private static final long serialVersionUID = 1L;
@XmlElement(required = true)
protected String id;
@XmlElement(required = true)
protected String party;
@XmlElement(name = "hangar_id", required = true)
protected BigDecimal hangarId;
@XmlElement(required = true)
protected String issue;
@XmlElement(required = true)
protected String concern;
/**
* Gets the value of the id property.
*
* @return
* possible object is
* {@link String }
*
*/
@Basic
@Column(name = "ID")
public String getId() {
return id;
}
/**
* Sets the value of the id property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setId(final String value) {
this.id = value;
}
/**
* Gets the value of the party property.
*
* @return
* possible object is
* {@link String }
*
*/
@Basic
@Column(name = "PARTY")
public String getParty() {
return party;
}
/**
* Sets the value of the party property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setParty(final String value) {
this.party = value;
}
/**
* Gets the value of the hangarId property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
@Basic
@Column(name = "HANGAR_ID", precision = 20, scale = 10)
public BigDecimal getHangarId() {
return hangarId;
}
/**
* Sets the value of the hangarId property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public void setHangarId(final BigDecimal value) {
this.hangarId = value;
}
/**
* Gets the value of the issue property.
*
* @return
* possible object is
* {@link String }
*
*/
@Basic
@Column(name = "ISSUE")
public String getIssue() {
return issue;
}
/**
* Sets the value of the issue property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIssue(final String value) {
this.issue = value;
}
/**
* Gets the value of the concern property.
*
* @return
* possible object is
* {@link String }
*
*/
@Basic
@Column(name = "CONCERN")
public String getConcern() {
return concern;
}
/**
* Sets the value of the concern property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setConcern(final String value) {
this.concern = value;
}
public ViewRiksdagenCommitteeBallotDecisionPartyEmbeddedId withId(final String value) {
setId(value);
return this;
}
public ViewRiksdagenCommitteeBallotDecisionPartyEmbeddedId withParty(final String value) {
setParty(value);
return this;
}
public ViewRiksdagenCommitteeBallotDecisionPartyEmbeddedId withHangarId(final BigDecimal value) {
setHangarId(value);
return this;
}
public ViewRiksdagenCommitteeBallotDecisionPartyEmbeddedId withIssue(final String value) {
setIssue(value);
return this;
}
public ViewRiksdagenCommitteeBallotDecisionPartyEmbeddedId withConcern(final String value) {
setConcern(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);
}
}