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

org.unece.cefact.namespaces.standardbusinessdocumentheader.StandardBusinessDocument Maven / Gradle / Ivy

//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2014.07.08 at 09:17:24 AM CEST 
//


package org.unece.cefact.namespaces.standardbusinessdocumentheader;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAnyElement;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
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;
import org.w3c.dom.Element;


/**
 * 

Java class for StandardBusinessDocument complex type. * *

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

 * <complexType name="StandardBusinessDocument">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element ref="{http://www.unece.org/cefact/namespaces/StandardBusinessDocumentHeader}StandardBusinessDocumentHeader" minOccurs="0"/>
 *         <any processContents='lax' namespace='##other'/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "StandardBusinessDocument", propOrder = { "standardBusinessDocumentHeader", "any" }) @XmlRootElement(name = "StandardBusinessDocument") public class StandardBusinessDocument implements Equals, HashCode, ToString { @XmlElement(name = "StandardBusinessDocumentHeader") protected StandardBusinessDocumentHeader standardBusinessDocumentHeader; @XmlAnyElement(lax = true) protected Object any; /** * Default no-arg constructor * */ public StandardBusinessDocument() { super(); } /** * Fully-initialising value constructor * */ public StandardBusinessDocument(final StandardBusinessDocumentHeader standardBusinessDocumentHeader, final Object any) { this.standardBusinessDocumentHeader = standardBusinessDocumentHeader; this.any = any; } /** * Gets the value of the standardBusinessDocumentHeader property. * * @return * possible object is * {@link StandardBusinessDocumentHeader } * */ public StandardBusinessDocumentHeader getStandardBusinessDocumentHeader() { return standardBusinessDocumentHeader; } /** * Sets the value of the standardBusinessDocumentHeader property. * * @param value * allowed object is * {@link StandardBusinessDocumentHeader } * */ public void setStandardBusinessDocumentHeader(StandardBusinessDocumentHeader value) { this.standardBusinessDocumentHeader = value; } /** * Gets the value of the any property. * * @return * possible object is * {@link Element } * {@link Object } * */ public Object getAny() { return any; } /** * Sets the value of the any property. * * @param value * allowed object is * {@link Element } * {@link Object } * */ public void setAny(Object value) { this.any = 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) { { StandardBusinessDocumentHeader theStandardBusinessDocumentHeader; theStandardBusinessDocumentHeader = this.getStandardBusinessDocumentHeader(); strategy.appendField(locator, this, "standardBusinessDocumentHeader", buffer, theStandardBusinessDocumentHeader); } { Object theAny; theAny = this.getAny(); strategy.appendField(locator, this, "any", buffer, theAny); } return buffer; } public boolean equals(ObjectLocator thisLocator, ObjectLocator thatLocator, Object object, EqualsStrategy strategy) { if (!(object instanceof StandardBusinessDocument)) { return false; } if (this == object) { return true; } final StandardBusinessDocument that = ((StandardBusinessDocument) object); { StandardBusinessDocumentHeader lhsStandardBusinessDocumentHeader; lhsStandardBusinessDocumentHeader = this.getStandardBusinessDocumentHeader(); StandardBusinessDocumentHeader rhsStandardBusinessDocumentHeader; rhsStandardBusinessDocumentHeader = that.getStandardBusinessDocumentHeader(); if (!strategy.equals(LocatorUtils.property(thisLocator, "standardBusinessDocumentHeader", lhsStandardBusinessDocumentHeader), LocatorUtils.property(thatLocator, "standardBusinessDocumentHeader", rhsStandardBusinessDocumentHeader), lhsStandardBusinessDocumentHeader, rhsStandardBusinessDocumentHeader)) { return false; } } { Object lhsAny; lhsAny = this.getAny(); Object rhsAny; rhsAny = that.getAny(); if (!strategy.equals(LocatorUtils.property(thisLocator, "any", lhsAny), LocatorUtils.property(thatLocator, "any", rhsAny), lhsAny, rhsAny)) { 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; { StandardBusinessDocumentHeader theStandardBusinessDocumentHeader; theStandardBusinessDocumentHeader = this.getStandardBusinessDocumentHeader(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "standardBusinessDocumentHeader", theStandardBusinessDocumentHeader), currentHashCode, theStandardBusinessDocumentHeader); } { Object theAny; theAny = this.getAny(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "any", theAny), currentHashCode, theAny); } return currentHashCode; } public int hashCode() { final HashCodeStrategy strategy = JAXBHashCodeStrategy.INSTANCE; return this.hashCode(null, strategy); } public StandardBusinessDocument withStandardBusinessDocumentHeader(StandardBusinessDocumentHeader value) { setStandardBusinessDocumentHeader(value); return this; } public StandardBusinessDocument withAny(Object value) { setAny(value); return this; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy