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

no.difi.begrep.sdp.schema_v10.SDPAvsender Maven / Gradle / Ivy

The newest version!
//
// 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.difi.begrep.sdp.schema_v10;

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.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 Avsender complex type. * *

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

 * <complexType name="Avsender">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="organisasjon" type="{http://begrep.difi.no/sdp/schema_v10}Organisasjon"/>
 *         <element name="avsenderidentifikator" minOccurs="0">
 *           <simpleType>
 *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *               <maxLength value="100"/>
 *             </restriction>
 *           </simpleType>
 *         </element>
 *         <element name="fakturaReferanse" minOccurs="0">
 *           <simpleType>
 *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *               <maxLength value="40"/>
 *             </restriction>
 *           </simpleType>
 *         </element>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Avsender", propOrder = { "organisasjon", "avsenderidentifikator", "fakturaReferanse" }) public class SDPAvsender implements Equals2, HashCode2, ToString2 { @XmlElement(required = true) protected SDPOrganisasjon organisasjon; protected String avsenderidentifikator; protected String fakturaReferanse; /** * Default no-arg constructor * */ public SDPAvsender() { super(); } /** * Fully-initialising value constructor * */ public SDPAvsender(final SDPOrganisasjon organisasjon, final String avsenderidentifikator, final String fakturaReferanse) { this.organisasjon = organisasjon; this.avsenderidentifikator = avsenderidentifikator; this.fakturaReferanse = fakturaReferanse; } /** * Gets the value of the organisasjon property. * * @return * possible object is * {@link SDPOrganisasjon } * */ public SDPOrganisasjon getOrganisasjon() { return organisasjon; } /** * Sets the value of the organisasjon property. * * @param value * allowed object is * {@link SDPOrganisasjon } * */ public void setOrganisasjon(SDPOrganisasjon value) { this.organisasjon = value; } /** * Gets the value of the avsenderidentifikator property. * * @return * possible object is * {@link String } * */ public String getAvsenderidentifikator() { return avsenderidentifikator; } /** * Sets the value of the avsenderidentifikator property. * * @param value * allowed object is * {@link String } * */ public void setAvsenderidentifikator(String value) { this.avsenderidentifikator = value; } /** * Gets the value of the fakturaReferanse property. * * @return * possible object is * {@link String } * */ public String getFakturaReferanse() { return fakturaReferanse; } /** * Sets the value of the fakturaReferanse property. * * @param value * allowed object is * {@link String } * */ public void setFakturaReferanse(String value) { this.fakturaReferanse = 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) { { SDPOrganisasjon theOrganisasjon; theOrganisasjon = this.getOrganisasjon(); strategy.appendField(locator, this, "organisasjon", buffer, theOrganisasjon, (this.organisasjon!= null)); } { String theAvsenderidentifikator; theAvsenderidentifikator = this.getAvsenderidentifikator(); strategy.appendField(locator, this, "avsenderidentifikator", buffer, theAvsenderidentifikator, (this.avsenderidentifikator!= null)); } { String theFakturaReferanse; theFakturaReferanse = this.getFakturaReferanse(); strategy.appendField(locator, this, "fakturaReferanse", buffer, theFakturaReferanse, (this.fakturaReferanse!= 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 SDPAvsender that = ((SDPAvsender) object); { SDPOrganisasjon lhsOrganisasjon; lhsOrganisasjon = this.getOrganisasjon(); SDPOrganisasjon rhsOrganisasjon; rhsOrganisasjon = that.getOrganisasjon(); if (!strategy.equals(LocatorUtils.property(thisLocator, "organisasjon", lhsOrganisasjon), LocatorUtils.property(thatLocator, "organisasjon", rhsOrganisasjon), lhsOrganisasjon, rhsOrganisasjon, (this.organisasjon!= null), (that.organisasjon!= null))) { return false; } } { String lhsAvsenderidentifikator; lhsAvsenderidentifikator = this.getAvsenderidentifikator(); String rhsAvsenderidentifikator; rhsAvsenderidentifikator = that.getAvsenderidentifikator(); if (!strategy.equals(LocatorUtils.property(thisLocator, "avsenderidentifikator", lhsAvsenderidentifikator), LocatorUtils.property(thatLocator, "avsenderidentifikator", rhsAvsenderidentifikator), lhsAvsenderidentifikator, rhsAvsenderidentifikator, (this.avsenderidentifikator!= null), (that.avsenderidentifikator!= null))) { return false; } } { String lhsFakturaReferanse; lhsFakturaReferanse = this.getFakturaReferanse(); String rhsFakturaReferanse; rhsFakturaReferanse = that.getFakturaReferanse(); if (!strategy.equals(LocatorUtils.property(thisLocator, "fakturaReferanse", lhsFakturaReferanse), LocatorUtils.property(thatLocator, "fakturaReferanse", rhsFakturaReferanse), lhsFakturaReferanse, rhsFakturaReferanse, (this.fakturaReferanse!= null), (that.fakturaReferanse!= 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; { SDPOrganisasjon theOrganisasjon; theOrganisasjon = this.getOrganisasjon(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "organisasjon", theOrganisasjon), currentHashCode, theOrganisasjon, (this.organisasjon!= null)); } { String theAvsenderidentifikator; theAvsenderidentifikator = this.getAvsenderidentifikator(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "avsenderidentifikator", theAvsenderidentifikator), currentHashCode, theAvsenderidentifikator, (this.avsenderidentifikator!= null)); } { String theFakturaReferanse; theFakturaReferanse = this.getFakturaReferanse(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "fakturaReferanse", theFakturaReferanse), currentHashCode, theFakturaReferanse, (this.fakturaReferanse!= null)); } return currentHashCode; } @Override public int hashCode() { final HashCodeStrategy2 strategy = JAXBHashCodeStrategy.getInstance(); return this.hashCode(null, strategy); } public SDPAvsender withOrganisasjon(SDPOrganisasjon value) { setOrganisasjon(value); return this; } public SDPAvsender withAvsenderidentifikator(String value) { setAvsenderidentifikator(value); return this; } public SDPAvsender withFakturaReferanse(String value) { setFakturaReferanse(value); return this; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy