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

org.etsi.uri._2918.v1_2.DataObjectReference Maven / Gradle / Ivy

//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.0 
// See https://javaee.github.io/jaxb-v2/ 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2021.12.01 at 12:54:39 PM UTC 
//


package org.etsi.uri._2918.v1_2;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import no.digipost.org.w3.xmldsig.DigestMethod;
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;


/**
 * 

Java class for DataObjectReferenceType complex type. * *

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

 * <complexType name="DataObjectReferenceType">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element ref="{http://www.w3.org/2000/09/xmldsig#}DigestMethod"/>
 *         <element ref="{http://www.w3.org/2000/09/xmldsig#}DigestValue"/>
 *         <element name="DataObjectReferenceExtensions" type="{http://uri.etsi.org/2918/v1.2.1#}ExtensionsListType" minOccurs="0"/>
 *       </sequence>
 *       <attribute name="URI" use="required" type="{http://www.w3.org/2001/XMLSchema}anyURI" />
 *       <attribute name="MimeType" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="Rootfile" type="{http://www.w3.org/2001/XMLSchema}boolean" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "DataObjectReferenceType", propOrder = { "digestMethod", "digestValue", "dataObjectReferenceExtensions" }) @XmlRootElement(name = "DataObjectReference") public class DataObjectReference implements Equals2, HashCode2, ToString2 { @XmlElement(name = "DigestMethod", namespace = "http://www.w3.org/2000/09/xmldsig#", required = true) protected DigestMethod digestMethod; @XmlElement(name = "DigestValue", namespace = "http://www.w3.org/2000/09/xmldsig#", required = true) protected byte[] digestValue; @XmlElement(name = "DataObjectReferenceExtensions") protected ExtensionsListType dataObjectReferenceExtensions; @XmlAttribute(name = "URI", required = true) @XmlSchemaType(name = "anyURI") protected String uri; @XmlAttribute(name = "MimeType") protected String mimeType; @XmlAttribute(name = "Rootfile") protected Boolean rootfile; /** * Default no-arg constructor * */ public DataObjectReference() { super(); } /** * Fully-initialising value constructor * */ public DataObjectReference(final DigestMethod digestMethod, final byte[] digestValue, final ExtensionsListType dataObjectReferenceExtensions, final String uri, final String mimeType, final Boolean rootfile) { this.digestMethod = digestMethod; this.digestValue = digestValue; this.dataObjectReferenceExtensions = dataObjectReferenceExtensions; this.uri = uri; this.mimeType = mimeType; this.rootfile = rootfile; } /** * Gets the value of the digestMethod property. * * @return * possible object is * {@link DigestMethod } * */ public DigestMethod getDigestMethod() { return digestMethod; } /** * Sets the value of the digestMethod property. * * @param value * allowed object is * {@link DigestMethod } * */ public void setDigestMethod(DigestMethod value) { this.digestMethod = value; } /** * Gets the value of the digestValue property. * * @return * possible object is * byte[] */ public byte[] getDigestValue() { return digestValue; } /** * Sets the value of the digestValue property. * * @param value * allowed object is * byte[] */ public void setDigestValue(byte[] value) { this.digestValue = value; } /** * Gets the value of the dataObjectReferenceExtensions property. * * @return * possible object is * {@link ExtensionsListType } * */ public ExtensionsListType getDataObjectReferenceExtensions() { return dataObjectReferenceExtensions; } /** * Sets the value of the dataObjectReferenceExtensions property. * * @param value * allowed object is * {@link ExtensionsListType } * */ public void setDataObjectReferenceExtensions(ExtensionsListType value) { this.dataObjectReferenceExtensions = value; } /** * Gets the value of the uri property. * * @return * possible object is * {@link String } * */ public String getURI() { return uri; } /** * Sets the value of the uri property. * * @param value * allowed object is * {@link String } * */ public void setURI(String value) { this.uri = value; } /** * Gets the value of the mimeType property. * * @return * possible object is * {@link String } * */ public String getMimeType() { return mimeType; } /** * Sets the value of the mimeType property. * * @param value * allowed object is * {@link String } * */ public void setMimeType(String value) { this.mimeType = value; } /** * Gets the value of the rootfile property. * * @return * possible object is * {@link Boolean } * */ public Boolean getRootfile() { return rootfile; } /** * Sets the value of the rootfile property. * * @param value * allowed object is * {@link Boolean } * */ public void setRootfile(Boolean value) { this.rootfile = value; } public String toString() { final ToStringStrategy2 strategy = JAXBToStringStrategy.INSTANCE2; final StringBuilder buffer = new StringBuilder(); append(null, buffer, strategy); return buffer.toString(); } 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; } public StringBuilder appendFields(ObjectLocator locator, StringBuilder buffer, ToStringStrategy2 strategy) { { DigestMethod theDigestMethod; theDigestMethod = this.getDigestMethod(); strategy.appendField(locator, this, "digestMethod", buffer, theDigestMethod, (this.digestMethod!= null)); } { byte[] theDigestValue; theDigestValue = this.getDigestValue(); strategy.appendField(locator, this, "digestValue", buffer, theDigestValue, (this.digestValue!= null)); } { ExtensionsListType theDataObjectReferenceExtensions; theDataObjectReferenceExtensions = this.getDataObjectReferenceExtensions(); strategy.appendField(locator, this, "dataObjectReferenceExtensions", buffer, theDataObjectReferenceExtensions, (this.dataObjectReferenceExtensions!= null)); } { String theURI; theURI = this.getURI(); strategy.appendField(locator, this, "uri", buffer, theURI, (this.uri!= null)); } { String theMimeType; theMimeType = this.getMimeType(); strategy.appendField(locator, this, "mimeType", buffer, theMimeType, (this.mimeType!= null)); } { Boolean theRootfile; theRootfile = this.getRootfile(); strategy.appendField(locator, this, "rootfile", buffer, theRootfile, (this.rootfile!= null)); } return buffer; } 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 DataObjectReference that = ((DataObjectReference) object); { DigestMethod lhsDigestMethod; lhsDigestMethod = this.getDigestMethod(); DigestMethod rhsDigestMethod; rhsDigestMethod = that.getDigestMethod(); if (!strategy.equals(LocatorUtils.property(thisLocator, "digestMethod", lhsDigestMethod), LocatorUtils.property(thatLocator, "digestMethod", rhsDigestMethod), lhsDigestMethod, rhsDigestMethod, (this.digestMethod!= null), (that.digestMethod!= null))) { return false; } } { byte[] lhsDigestValue; lhsDigestValue = this.getDigestValue(); byte[] rhsDigestValue; rhsDigestValue = that.getDigestValue(); if (!strategy.equals(LocatorUtils.property(thisLocator, "digestValue", lhsDigestValue), LocatorUtils.property(thatLocator, "digestValue", rhsDigestValue), lhsDigestValue, rhsDigestValue, (this.digestValue!= null), (that.digestValue!= null))) { return false; } } { ExtensionsListType lhsDataObjectReferenceExtensions; lhsDataObjectReferenceExtensions = this.getDataObjectReferenceExtensions(); ExtensionsListType rhsDataObjectReferenceExtensions; rhsDataObjectReferenceExtensions = that.getDataObjectReferenceExtensions(); if (!strategy.equals(LocatorUtils.property(thisLocator, "dataObjectReferenceExtensions", lhsDataObjectReferenceExtensions), LocatorUtils.property(thatLocator, "dataObjectReferenceExtensions", rhsDataObjectReferenceExtensions), lhsDataObjectReferenceExtensions, rhsDataObjectReferenceExtensions, (this.dataObjectReferenceExtensions!= null), (that.dataObjectReferenceExtensions!= null))) { return false; } } { String lhsURI; lhsURI = this.getURI(); String rhsURI; rhsURI = that.getURI(); if (!strategy.equals(LocatorUtils.property(thisLocator, "uri", lhsURI), LocatorUtils.property(thatLocator, "uri", rhsURI), lhsURI, rhsURI, (this.uri!= null), (that.uri!= null))) { return false; } } { String lhsMimeType; lhsMimeType = this.getMimeType(); String rhsMimeType; rhsMimeType = that.getMimeType(); if (!strategy.equals(LocatorUtils.property(thisLocator, "mimeType", lhsMimeType), LocatorUtils.property(thatLocator, "mimeType", rhsMimeType), lhsMimeType, rhsMimeType, (this.mimeType!= null), (that.mimeType!= null))) { return false; } } { Boolean lhsRootfile; lhsRootfile = this.getRootfile(); Boolean rhsRootfile; rhsRootfile = that.getRootfile(); if (!strategy.equals(LocatorUtils.property(thisLocator, "rootfile", lhsRootfile), LocatorUtils.property(thatLocator, "rootfile", rhsRootfile), lhsRootfile, rhsRootfile, (this.rootfile!= null), (that.rootfile!= null))) { return false; } } return true; } public boolean equals(Object object) { final EqualsStrategy2 strategy = JAXBEqualsStrategy.INSTANCE2; return equals(null, null, object, strategy); } public int hashCode(ObjectLocator locator, HashCodeStrategy2 strategy) { int currentHashCode = 1; { DigestMethod theDigestMethod; theDigestMethod = this.getDigestMethod(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "digestMethod", theDigestMethod), currentHashCode, theDigestMethod, (this.digestMethod!= null)); } { byte[] theDigestValue; theDigestValue = this.getDigestValue(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "digestValue", theDigestValue), currentHashCode, theDigestValue, (this.digestValue!= null)); } { ExtensionsListType theDataObjectReferenceExtensions; theDataObjectReferenceExtensions = this.getDataObjectReferenceExtensions(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "dataObjectReferenceExtensions", theDataObjectReferenceExtensions), currentHashCode, theDataObjectReferenceExtensions, (this.dataObjectReferenceExtensions!= null)); } { String theURI; theURI = this.getURI(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "uri", theURI), currentHashCode, theURI, (this.uri!= null)); } { String theMimeType; theMimeType = this.getMimeType(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "mimeType", theMimeType), currentHashCode, theMimeType, (this.mimeType!= null)); } { Boolean theRootfile; theRootfile = this.getRootfile(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "rootfile", theRootfile), currentHashCode, theRootfile, (this.rootfile!= null)); } return currentHashCode; } public int hashCode() { final HashCodeStrategy2 strategy = JAXBHashCodeStrategy.INSTANCE2; return this.hashCode(null, strategy); } public DataObjectReference withDigestMethod(DigestMethod value) { setDigestMethod(value); return this; } public DataObjectReference withDigestValue(byte[] value) { setDigestValue(value); return this; } public DataObjectReference withDataObjectReferenceExtensions(ExtensionsListType value) { setDataObjectReferenceExtensions(value); return this; } public DataObjectReference withURI(String value) { setURI(value); return this; } public DataObjectReference withMimeType(String value) { setMimeType(value); return this; } public DataObjectReference withRootfile(Boolean value) { setRootfile(value); return this; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy