package org.cagrid.dorian.model.federation; import java.io.Serializable; 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.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; /** * <p>Java class for HostSearchCriteria complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="HostSearchCriteria"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="identity" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="hostname" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="hostCertificateSubject" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="owner" type="{http://www.w3.org/2001/XMLSchema}string"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "HostSearchCriteria", propOrder = { "identity", "hostname", "hostCertificateSubject", "owner" }) public class HostSearchCriteria implements Serializable, Equals, HashCode, ToString { @XmlElement(required = true) protected String identity; @XmlElement(required = true) protected String hostname; @XmlElement(required = true) protected String hostCertificateSubject; @XmlElement(required = true) protected String owner; /** * Gets the value of the identity property. * * @return * possible object is * {@link String } * */ public String getIdentity() { return identity; } /** * Sets the value of the identity property. * * @param value * allowed object is * {@link String } * */ public void setIdentity(String value) { this.identity = value; } /** * Gets the value of the hostname property. * * @return * possible object is * {@link String } * */ public String getHostname() { return hostname; } /** * Sets the value of the hostname property. * * @param value * allowed object is * {@link String } * */ public void setHostname(String value) { this.hostname = value; } /** * Gets the value of the hostCertificateSubject property. * * @return * possible object is * {@link String } * */ public String getHostCertificateSubject() { return hostCertificateSubject; } /** * Sets the value of the hostCertificateSubject property. * * @param value * allowed object is * {@link String } * */ public void setHostCertificateSubject(String value) { this.hostCertificateSubject = value; } /** * Gets the value of the owner property. * * @return * possible object is * {@link String } * */ public String getOwner() { return owner; } /** * Sets the value of the owner property. * * @param value * allowed object is * {@link String } * */ public void setOwner(String value) { this.owner = 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) { { String theIdentity; theIdentity = this.getIdentity(); strategy.appendField(locator, this, "identity", buffer, theIdentity); } { String theHostname; theHostname = this.getHostname(); strategy.appendField(locator, this, "hostname", buffer, theHostname); } { String theHostCertificateSubject; theHostCertificateSubject = this.getHostCertificateSubject(); strategy.appendField(locator, this, "hostCertificateSubject", buffer, theHostCertificateSubject); } { String theOwner; theOwner = this.getOwner(); strategy.appendField(locator, this, "owner", buffer, theOwner); } return buffer; } public int hashCode(ObjectLocator locator, HashCodeStrategy strategy) { int currentHashCode = 1; { String theIdentity; theIdentity = this.getIdentity(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "identity", theIdentity), currentHashCode, theIdentity); } { String theHostname; theHostname = this.getHostname(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "hostname", theHostname), currentHashCode, theHostname); } { String theHostCertificateSubject; theHostCertificateSubject = this.getHostCertificateSubject(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "hostCertificateSubject", theHostCertificateSubject), currentHashCode, theHostCertificateSubject); } { String theOwner; theOwner = this.getOwner(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "owner", theOwner), currentHashCode, theOwner); } return currentHashCode; } public int hashCode() { final HashCodeStrategy strategy = JAXBHashCodeStrategy.INSTANCE; return this.hashCode(null, strategy); } public boolean equals(ObjectLocator thisLocator, ObjectLocator thatLocator, Object object, EqualsStrategy strategy) { if (!(object instanceof HostSearchCriteria)) { return false; } if (this == object) { return true; } final HostSearchCriteria that = ((HostSearchCriteria) object); { String lhsIdentity; lhsIdentity = this.getIdentity(); String rhsIdentity; rhsIdentity = that.getIdentity(); if (!strategy.equals(LocatorUtils.property(thisLocator, "identity", lhsIdentity), LocatorUtils.property(thatLocator, "identity", rhsIdentity), lhsIdentity, rhsIdentity)) { return false; } } { String lhsHostname; lhsHostname = this.getHostname(); String rhsHostname; rhsHostname = that.getHostname(); if (!strategy.equals(LocatorUtils.property(thisLocator, "hostname", lhsHostname), LocatorUtils.property(thatLocator, "hostname", rhsHostname), lhsHostname, rhsHostname)) { return false; } } { String lhsHostCertificateSubject; lhsHostCertificateSubject = this.getHostCertificateSubject(); String rhsHostCertificateSubject; rhsHostCertificateSubject = that.getHostCertificateSubject(); if (!strategy.equals(LocatorUtils.property(thisLocator, "hostCertificateSubject", lhsHostCertificateSubject), LocatorUtils.property(thatLocator, "hostCertificateSubject", rhsHostCertificateSubject), lhsHostCertificateSubject, rhsHostCertificateSubject)) { return false; } } { String lhsOwner; lhsOwner = this.getOwner(); String rhsOwner; rhsOwner = that.getOwner(); if (!strategy.equals(LocatorUtils.property(thisLocator, "owner", lhsOwner), LocatorUtils.property(thatLocator, "owner", rhsOwner), lhsOwner, rhsOwner)) { return false; } } return true; } public boolean equals(Object object) { final EqualsStrategy strategy = JAXBEqualsStrategy.INSTANCE; return equals(null, null, object, strategy); } }