All Downloads are FREE. Search and download functionalities are using the official Maven repository.

oasis.names.specification.ubl.schema.xsd.commonaggregatecomponents_2.EventType Maven / Gradle / Ivy

//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2016.07.19 at 05:08:29 PM CEST 
//


package oasis.names.specification.ubl.schema.xsd.commonaggregatecomponents_2;

import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;
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 oasis.names.specification.ubl.schema.xsd.commonbasiccomponents_2.CompletionIndicatorType;
import oasis.names.specification.ubl.schema.xsd.commonbasiccomponents_2.DescriptionType;
import oasis.names.specification.ubl.schema.xsd.commonbasiccomponents_2.IdentificationIDType;
import oasis.names.specification.ubl.schema.xsd.commonbasiccomponents_2.OccurrenceDateType;
import oasis.names.specification.ubl.schema.xsd.commonbasiccomponents_2.OccurrenceTimeType;
import oasis.names.specification.ubl.schema.xsd.commonbasiccomponents_2.TypeCodeType;
import org.jvnet.jaxb2_commons.lang.Equals;
import org.jvnet.jaxb2_commons.lang.EqualsStrategy;
import org.jvnet.jaxb2_commons.lang.HashCode;
import org.jvnet.jaxb2_commons.lang.HashCodeStrategy;
import org.jvnet.jaxb2_commons.lang.JAXBEqualsStrategy;
import org.jvnet.jaxb2_commons.lang.JAXBHashCodeStrategy;
import org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy;
import org.jvnet.jaxb2_commons.lang.ToString;
import org.jvnet.jaxb2_commons.lang.ToStringStrategy;
import org.jvnet.jaxb2_commons.locator.ObjectLocator;
import org.jvnet.jaxb2_commons.locator.util.LocatorUtils;


/**
 * 

Java class for EventType complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="EventType">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element ref="{urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2}IdentificationID" minOccurs="0"/>
 *         <element ref="{urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2}OccurrenceDate" minOccurs="0"/>
 *         <element ref="{urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2}OccurrenceTime" minOccurs="0"/>
 *         <element ref="{urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2}TypeCode" minOccurs="0"/>
 *         <element ref="{urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2}Description" maxOccurs="unbounded" minOccurs="0"/>
 *         <element ref="{urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2}CompletionIndicator" minOccurs="0"/>
 *         <element ref="{urn:oasis:names:specification:ubl:schema:xsd:CommonAggregateComponents-2}CurrentStatus" maxOccurs="unbounded" minOccurs="0"/>
 *         <element ref="{urn:oasis:names:specification:ubl:schema:xsd:CommonAggregateComponents-2}Contact" maxOccurs="unbounded" minOccurs="0"/>
 *         <element ref="{urn:oasis:names:specification:ubl:schema:xsd:CommonAggregateComponents-2}OccurenceLocation" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "EventType", propOrder = { "identificationID", "occurrenceDate", "occurrenceTime", "typeCode", "description", "completionIndicator", "currentStatus", "contact", "occurenceLocation" }) public class EventType implements Serializable, Equals, HashCode, ToString { private final static long serialVersionUID = 100L; @XmlElement(name = "IdentificationID", namespace = "urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2") protected IdentificationIDType identificationID; @XmlElement(name = "OccurrenceDate", namespace = "urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2") protected OccurrenceDateType occurrenceDate; @XmlElement(name = "OccurrenceTime", namespace = "urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2") protected OccurrenceTimeType occurrenceTime; @XmlElement(name = "TypeCode", namespace = "urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2") protected TypeCodeType typeCode; @XmlElement(name = "Description", namespace = "urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2") protected List description; @XmlElement(name = "CompletionIndicator", namespace = "urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2") protected CompletionIndicatorType completionIndicator; @XmlElement(name = "CurrentStatus") protected List currentStatus; @XmlElement(name = "Contact") protected List contact; @XmlElement(name = "OccurenceLocation") protected LocationType occurenceLocation; /** * Gets the value of the identificationID property. * * @return * possible object is * {@link IdentificationIDType } * */ public IdentificationIDType getIdentificationID() { return identificationID; } /** * Sets the value of the identificationID property. * * @param value * allowed object is * {@link IdentificationIDType } * */ public void setIdentificationID(IdentificationIDType value) { this.identificationID = value; } /** * Gets the value of the occurrenceDate property. * * @return * possible object is * {@link OccurrenceDateType } * */ public OccurrenceDateType getOccurrenceDate() { return occurrenceDate; } /** * Sets the value of the occurrenceDate property. * * @param value * allowed object is * {@link OccurrenceDateType } * */ public void setOccurrenceDate(OccurrenceDateType value) { this.occurrenceDate = value; } /** * Gets the value of the occurrenceTime property. * * @return * possible object is * {@link OccurrenceTimeType } * */ public OccurrenceTimeType getOccurrenceTime() { return occurrenceTime; } /** * Sets the value of the occurrenceTime property. * * @param value * allowed object is * {@link OccurrenceTimeType } * */ public void setOccurrenceTime(OccurrenceTimeType value) { this.occurrenceTime = value; } /** * Gets the value of the typeCode property. * * @return * possible object is * {@link TypeCodeType } * */ public TypeCodeType getTypeCode() { return typeCode; } /** * Sets the value of the typeCode property. * * @param value * allowed object is * {@link TypeCodeType } * */ public void setTypeCode(TypeCodeType value) { this.typeCode = value; } /** * Gets the value of the description property. * *

* 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 set method for the description property. * *

* For example, to add a new item, do as follows: *

     *    getDescription().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link DescriptionType } * * */ public List getDescription() { if (description == null) { description = new ArrayList(); } return this.description; } /** * Gets the value of the completionIndicator property. * * @return * possible object is * {@link CompletionIndicatorType } * */ public CompletionIndicatorType getCompletionIndicator() { return completionIndicator; } /** * Sets the value of the completionIndicator property. * * @param value * allowed object is * {@link CompletionIndicatorType } * */ public void setCompletionIndicator(CompletionIndicatorType value) { this.completionIndicator = value; } /** * Gets the value of the currentStatus property. * *

* 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 set method for the currentStatus property. * *

* For example, to add a new item, do as follows: *

     *    getCurrentStatus().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link StatusType } * * */ public List getCurrentStatus() { if (currentStatus == null) { currentStatus = new ArrayList(); } return this.currentStatus; } /** * Gets the value of the contact property. * *

* 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 set method for the contact property. * *

* For example, to add a new item, do as follows: *

     *    getContact().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link ContactType } * * */ public List getContact() { if (contact == null) { contact = new ArrayList(); } return this.contact; } /** * Gets the value of the occurenceLocation property. * * @return * possible object is * {@link LocationType } * */ public LocationType getOccurenceLocation() { return occurenceLocation; } /** * Sets the value of the occurenceLocation property. * * @param value * allowed object is * {@link LocationType } * */ public void setOccurenceLocation(LocationType value) { this.occurenceLocation = value; } public String toString() { final ToStringStrategy strategy = JAXBToStringStrategy.INSTANCE; final StringBuilder buffer = new StringBuilder(); append(null, buffer, strategy); return buffer.toString(); } public StringBuilder append(ObjectLocator locator, StringBuilder buffer, ToStringStrategy strategy) { strategy.appendStart(locator, this, buffer); appendFields(locator, buffer, strategy); strategy.appendEnd(locator, this, buffer); return buffer; } public StringBuilder appendFields(ObjectLocator locator, StringBuilder buffer, ToStringStrategy strategy) { { IdentificationIDType theIdentificationID; theIdentificationID = this.getIdentificationID(); strategy.appendField(locator, this, "identificationID", buffer, theIdentificationID); } { OccurrenceDateType theOccurrenceDate; theOccurrenceDate = this.getOccurrenceDate(); strategy.appendField(locator, this, "occurrenceDate", buffer, theOccurrenceDate); } { OccurrenceTimeType theOccurrenceTime; theOccurrenceTime = this.getOccurrenceTime(); strategy.appendField(locator, this, "occurrenceTime", buffer, theOccurrenceTime); } { TypeCodeType theTypeCode; theTypeCode = this.getTypeCode(); strategy.appendField(locator, this, "typeCode", buffer, theTypeCode); } { List theDescription; theDescription = (((this.description!= null)&&(!this.description.isEmpty()))?this.getDescription():null); strategy.appendField(locator, this, "description", buffer, theDescription); } { CompletionIndicatorType theCompletionIndicator; theCompletionIndicator = this.getCompletionIndicator(); strategy.appendField(locator, this, "completionIndicator", buffer, theCompletionIndicator); } { List theCurrentStatus; theCurrentStatus = (((this.currentStatus!= null)&&(!this.currentStatus.isEmpty()))?this.getCurrentStatus():null); strategy.appendField(locator, this, "currentStatus", buffer, theCurrentStatus); } { List theContact; theContact = (((this.contact!= null)&&(!this.contact.isEmpty()))?this.getContact():null); strategy.appendField(locator, this, "contact", buffer, theContact); } { LocationType theOccurenceLocation; theOccurenceLocation = this.getOccurenceLocation(); strategy.appendField(locator, this, "occurenceLocation", buffer, theOccurenceLocation); } return buffer; } public boolean equals(ObjectLocator thisLocator, ObjectLocator thatLocator, Object object, EqualsStrategy strategy) { if (!(object instanceof EventType)) { return false; } if (this == object) { return true; } final EventType that = ((EventType) object); { IdentificationIDType lhsIdentificationID; lhsIdentificationID = this.getIdentificationID(); IdentificationIDType rhsIdentificationID; rhsIdentificationID = that.getIdentificationID(); if (!strategy.equals(LocatorUtils.property(thisLocator, "identificationID", lhsIdentificationID), LocatorUtils.property(thatLocator, "identificationID", rhsIdentificationID), lhsIdentificationID, rhsIdentificationID)) { return false; } } { OccurrenceDateType lhsOccurrenceDate; lhsOccurrenceDate = this.getOccurrenceDate(); OccurrenceDateType rhsOccurrenceDate; rhsOccurrenceDate = that.getOccurrenceDate(); if (!strategy.equals(LocatorUtils.property(thisLocator, "occurrenceDate", lhsOccurrenceDate), LocatorUtils.property(thatLocator, "occurrenceDate", rhsOccurrenceDate), lhsOccurrenceDate, rhsOccurrenceDate)) { return false; } } { OccurrenceTimeType lhsOccurrenceTime; lhsOccurrenceTime = this.getOccurrenceTime(); OccurrenceTimeType rhsOccurrenceTime; rhsOccurrenceTime = that.getOccurrenceTime(); if (!strategy.equals(LocatorUtils.property(thisLocator, "occurrenceTime", lhsOccurrenceTime), LocatorUtils.property(thatLocator, "occurrenceTime", rhsOccurrenceTime), lhsOccurrenceTime, rhsOccurrenceTime)) { return false; } } { TypeCodeType lhsTypeCode; lhsTypeCode = this.getTypeCode(); TypeCodeType rhsTypeCode; rhsTypeCode = that.getTypeCode(); if (!strategy.equals(LocatorUtils.property(thisLocator, "typeCode", lhsTypeCode), LocatorUtils.property(thatLocator, "typeCode", rhsTypeCode), lhsTypeCode, rhsTypeCode)) { return false; } } { List lhsDescription; lhsDescription = (((this.description!= null)&&(!this.description.isEmpty()))?this.getDescription():null); List rhsDescription; rhsDescription = (((that.description!= null)&&(!that.description.isEmpty()))?that.getDescription():null); if (!strategy.equals(LocatorUtils.property(thisLocator, "description", lhsDescription), LocatorUtils.property(thatLocator, "description", rhsDescription), lhsDescription, rhsDescription)) { return false; } } { CompletionIndicatorType lhsCompletionIndicator; lhsCompletionIndicator = this.getCompletionIndicator(); CompletionIndicatorType rhsCompletionIndicator; rhsCompletionIndicator = that.getCompletionIndicator(); if (!strategy.equals(LocatorUtils.property(thisLocator, "completionIndicator", lhsCompletionIndicator), LocatorUtils.property(thatLocator, "completionIndicator", rhsCompletionIndicator), lhsCompletionIndicator, rhsCompletionIndicator)) { return false; } } { List lhsCurrentStatus; lhsCurrentStatus = (((this.currentStatus!= null)&&(!this.currentStatus.isEmpty()))?this.getCurrentStatus():null); List rhsCurrentStatus; rhsCurrentStatus = (((that.currentStatus!= null)&&(!that.currentStatus.isEmpty()))?that.getCurrentStatus():null); if (!strategy.equals(LocatorUtils.property(thisLocator, "currentStatus", lhsCurrentStatus), LocatorUtils.property(thatLocator, "currentStatus", rhsCurrentStatus), lhsCurrentStatus, rhsCurrentStatus)) { return false; } } { List lhsContact; lhsContact = (((this.contact!= null)&&(!this.contact.isEmpty()))?this.getContact():null); List rhsContact; rhsContact = (((that.contact!= null)&&(!that.contact.isEmpty()))?that.getContact():null); if (!strategy.equals(LocatorUtils.property(thisLocator, "contact", lhsContact), LocatorUtils.property(thatLocator, "contact", rhsContact), lhsContact, rhsContact)) { return false; } } { LocationType lhsOccurenceLocation; lhsOccurenceLocation = this.getOccurenceLocation(); LocationType rhsOccurenceLocation; rhsOccurenceLocation = that.getOccurenceLocation(); if (!strategy.equals(LocatorUtils.property(thisLocator, "occurenceLocation", lhsOccurenceLocation), LocatorUtils.property(thatLocator, "occurenceLocation", rhsOccurenceLocation), lhsOccurenceLocation, rhsOccurenceLocation)) { return false; } } return true; } public boolean equals(Object object) { final EqualsStrategy strategy = JAXBEqualsStrategy.INSTANCE; return equals(null, null, object, strategy); } public int hashCode(ObjectLocator locator, HashCodeStrategy strategy) { int currentHashCode = 1; { IdentificationIDType theIdentificationID; theIdentificationID = this.getIdentificationID(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "identificationID", theIdentificationID), currentHashCode, theIdentificationID); } { OccurrenceDateType theOccurrenceDate; theOccurrenceDate = this.getOccurrenceDate(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "occurrenceDate", theOccurrenceDate), currentHashCode, theOccurrenceDate); } { OccurrenceTimeType theOccurrenceTime; theOccurrenceTime = this.getOccurrenceTime(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "occurrenceTime", theOccurrenceTime), currentHashCode, theOccurrenceTime); } { TypeCodeType theTypeCode; theTypeCode = this.getTypeCode(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "typeCode", theTypeCode), currentHashCode, theTypeCode); } { List theDescription; theDescription = (((this.description!= null)&&(!this.description.isEmpty()))?this.getDescription():null); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "description", theDescription), currentHashCode, theDescription); } { CompletionIndicatorType theCompletionIndicator; theCompletionIndicator = this.getCompletionIndicator(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "completionIndicator", theCompletionIndicator), currentHashCode, theCompletionIndicator); } { List theCurrentStatus; theCurrentStatus = (((this.currentStatus!= null)&&(!this.currentStatus.isEmpty()))?this.getCurrentStatus():null); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "currentStatus", theCurrentStatus), currentHashCode, theCurrentStatus); } { List theContact; theContact = (((this.contact!= null)&&(!this.contact.isEmpty()))?this.getContact():null); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "contact", theContact), currentHashCode, theContact); } { LocationType theOccurenceLocation; theOccurenceLocation = this.getOccurenceLocation(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "occurenceLocation", theOccurenceLocation), currentHashCode, theOccurenceLocation); } return currentHashCode; } public int hashCode() { final HashCodeStrategy strategy = JAXBHashCodeStrategy.INSTANCE; return this.hashCode(null, strategy); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy