no.digipost.org.unece.cefact.namespaces.standardbusinessdocumentheader.StandardBusinessDocument Maven / Gradle / Ivy
//
// This file was generated by the Eclipse Implementation of JAXB, v2.3.7
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2024.11.06 at 01:54:33 PM UTC
//
package no.digipost.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.Equals2;
import org.jvnet.jaxb2_commons.lang.EqualsStrategy2;
import org.jvnet.jaxb2_commons.lang.HashCode2;
import org.jvnet.jaxb2_commons.lang.HashCodeStrategy2;
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.ToString2;
import org.jvnet.jaxb2_commons.lang.ToStringStrategy2;
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 Equals2, HashCode2, ToString2
{
@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 Object }
* {@link Element }
*
*/
public Object getAny() {
return any;
}
/**
* Sets the value of the any property.
*
* @param value
* allowed object is
* {@link Object }
* {@link Element }
*
*/
public void setAny(Object value) {
this.any = value;
}
@Override
public String toString() {
final ToStringStrategy2 strategy = JAXBToStringStrategy.getInstance();
final StringBuilder buffer = new StringBuilder();
append(null, buffer, strategy);
return buffer.toString();
}
@Override
public StringBuilder append(ObjectLocator locator, StringBuilder buffer, ToStringStrategy2 strategy) {
strategy.appendStart(locator, this, buffer);
appendFields(locator, buffer, strategy);
strategy.appendEnd(locator, this, buffer);
return buffer;
}
@Override
public StringBuilder appendFields(ObjectLocator locator, StringBuilder buffer, ToStringStrategy2 strategy) {
{
StandardBusinessDocumentHeader theStandardBusinessDocumentHeader;
theStandardBusinessDocumentHeader = this.getStandardBusinessDocumentHeader();
strategy.appendField(locator, this, "standardBusinessDocumentHeader", buffer, theStandardBusinessDocumentHeader, (this.standardBusinessDocumentHeader!= null));
}
{
Object theAny;
theAny = this.getAny();
strategy.appendField(locator, this, "any", buffer, theAny, (this.any!= null));
}
return buffer;
}
@Override
public boolean equals(ObjectLocator thisLocator, ObjectLocator thatLocator, Object object, EqualsStrategy2 strategy) {
if ((object == null)||(this.getClass()!= object.getClass())) {
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, (this.standardBusinessDocumentHeader!= null), (that.standardBusinessDocumentHeader!= null))) {
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, (this.any!= null), (that.any!= null))) {
return false;
}
}
return true;
}
@Override
public boolean equals(Object object) {
final EqualsStrategy2 strategy = JAXBEqualsStrategy.getInstance();
return equals(null, null, object, strategy);
}
@Override
public int hashCode(ObjectLocator locator, HashCodeStrategy2 strategy) {
int currentHashCode = 1;
{
StandardBusinessDocumentHeader theStandardBusinessDocumentHeader;
theStandardBusinessDocumentHeader = this.getStandardBusinessDocumentHeader();
currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "standardBusinessDocumentHeader", theStandardBusinessDocumentHeader), currentHashCode, theStandardBusinessDocumentHeader, (this.standardBusinessDocumentHeader!= null));
}
{
Object theAny;
theAny = this.getAny();
currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "any", theAny), currentHashCode, theAny, (this.any!= null));
}
return currentHashCode;
}
@Override
public int hashCode() {
final HashCodeStrategy2 strategy = JAXBHashCodeStrategy.getInstance();
return this.hashCode(null, strategy);
}
public StandardBusinessDocument withStandardBusinessDocumentHeader(StandardBusinessDocumentHeader value) {
setStandardBusinessDocumentHeader(value);
return this;
}
public StandardBusinessDocument withAny(Object value) {
setAny(value);
return this;
}
}