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

no.digipost.org.w3.xmldsig.X509IssuerSerialType 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 no.digipost.org.w3.xmldsig;

import java.math.BigInteger;
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 X509IssuerSerialType complex type. * *

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

 * <complexType name="X509IssuerSerialType">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="X509IssuerName" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="X509SerialNumber" type="{http://www.w3.org/2001/XMLSchema}integer"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "X509IssuerSerialType", propOrder = { "x509IssuerName", "x509SerialNumber" }) public class X509IssuerSerialType implements Equals2, HashCode2, ToString2 { @XmlElement(name = "X509IssuerName", required = true) protected String x509IssuerName; @XmlElement(name = "X509SerialNumber", required = true) protected BigInteger x509SerialNumber; /** * Default no-arg constructor * */ public X509IssuerSerialType() { super(); } /** * Fully-initialising value constructor * */ public X509IssuerSerialType(final String x509IssuerName, final BigInteger x509SerialNumber) { this.x509IssuerName = x509IssuerName; this.x509SerialNumber = x509SerialNumber; } /** * Gets the value of the x509IssuerName property. * * @return * possible object is * {@link String } * */ public String getX509IssuerName() { return x509IssuerName; } /** * Sets the value of the x509IssuerName property. * * @param value * allowed object is * {@link String } * */ public void setX509IssuerName(String value) { this.x509IssuerName = value; } /** * Gets the value of the x509SerialNumber property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getX509SerialNumber() { return x509SerialNumber; } /** * Sets the value of the x509SerialNumber property. * * @param value * allowed object is * {@link BigInteger } * */ public void setX509SerialNumber(BigInteger value) { this.x509SerialNumber = 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) { { String theX509IssuerName; theX509IssuerName = this.getX509IssuerName(); strategy.appendField(locator, this, "x509IssuerName", buffer, theX509IssuerName, (this.x509IssuerName!= null)); } { BigInteger theX509SerialNumber; theX509SerialNumber = this.getX509SerialNumber(); strategy.appendField(locator, this, "x509SerialNumber", buffer, theX509SerialNumber, (this.x509SerialNumber!= null)); } return buffer; } public boolean equals(ObjectLocator thisLocator, ObjectLocator thatLocator, java.lang.Object object, EqualsStrategy2 strategy) { if ((object == null)||(this.getClass()!= object.getClass())) { return false; } if (this == object) { return true; } final X509IssuerSerialType that = ((X509IssuerSerialType) object); { String lhsX509IssuerName; lhsX509IssuerName = this.getX509IssuerName(); String rhsX509IssuerName; rhsX509IssuerName = that.getX509IssuerName(); if (!strategy.equals(LocatorUtils.property(thisLocator, "x509IssuerName", lhsX509IssuerName), LocatorUtils.property(thatLocator, "x509IssuerName", rhsX509IssuerName), lhsX509IssuerName, rhsX509IssuerName, (this.x509IssuerName!= null), (that.x509IssuerName!= null))) { return false; } } { BigInteger lhsX509SerialNumber; lhsX509SerialNumber = this.getX509SerialNumber(); BigInteger rhsX509SerialNumber; rhsX509SerialNumber = that.getX509SerialNumber(); if (!strategy.equals(LocatorUtils.property(thisLocator, "x509SerialNumber", lhsX509SerialNumber), LocatorUtils.property(thatLocator, "x509SerialNumber", rhsX509SerialNumber), lhsX509SerialNumber, rhsX509SerialNumber, (this.x509SerialNumber!= null), (that.x509SerialNumber!= null))) { return false; } } return true; } public boolean equals(java.lang.Object object) { final EqualsStrategy2 strategy = JAXBEqualsStrategy.INSTANCE2; return equals(null, null, object, strategy); } public int hashCode(ObjectLocator locator, HashCodeStrategy2 strategy) { int currentHashCode = 1; { String theX509IssuerName; theX509IssuerName = this.getX509IssuerName(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "x509IssuerName", theX509IssuerName), currentHashCode, theX509IssuerName, (this.x509IssuerName!= null)); } { BigInteger theX509SerialNumber; theX509SerialNumber = this.getX509SerialNumber(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "x509SerialNumber", theX509SerialNumber), currentHashCode, theX509SerialNumber, (this.x509SerialNumber!= null)); } return currentHashCode; } public int hashCode() { final HashCodeStrategy2 strategy = JAXBHashCodeStrategy.INSTANCE2; return this.hashCode(null, strategy); } public X509IssuerSerialType withX509IssuerName(String value) { setX509IssuerName(value); return this; } public X509IssuerSerialType withX509SerialNumber(BigInteger value) { setX509SerialNumber(value); return this; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy