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.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 CertificateLifetime complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="CertificateLifetime"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="hours" type="{http://www.w3.org/2001/XMLSchema}int"/> * <element name="minutes" type="{http://www.w3.org/2001/XMLSchema}int"/> * <element name="seconds" type="{http://www.w3.org/2001/XMLSchema}int"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "CertificateLifetime", propOrder = { "hours", "minutes", "seconds" }) public class CertificateLifetime implements Serializable, Equals, HashCode, ToString { protected int hours; protected int minutes; protected int seconds; /** * Gets the value of the hours property. * */ public int getHours() { return hours; } /** * Sets the value of the hours property. * */ public void setHours(int value) { this.hours = value; } /** * Gets the value of the minutes property. * */ public int getMinutes() { return minutes; } /** * Sets the value of the minutes property. * */ public void setMinutes(int value) { this.minutes = value; } /** * Gets the value of the seconds property. * */ public int getSeconds() { return seconds; } /** * Sets the value of the seconds property. * */ public void setSeconds(int value) { this.seconds = 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) { { int theHours; theHours = (true?this.getHours(): 0); strategy.appendField(locator, this, "hours", buffer, theHours); } { int theMinutes; theMinutes = (true?this.getMinutes(): 0); strategy.appendField(locator, this, "minutes", buffer, theMinutes); } { int theSeconds; theSeconds = (true?this.getSeconds(): 0); strategy.appendField(locator, this, "seconds", buffer, theSeconds); } return buffer; } public int hashCode(ObjectLocator locator, HashCodeStrategy strategy) { int currentHashCode = 1; { int theHours; theHours = (true?this.getHours(): 0); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "hours", theHours), currentHashCode, theHours); } { int theMinutes; theMinutes = (true?this.getMinutes(): 0); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "minutes", theMinutes), currentHashCode, theMinutes); } { int theSeconds; theSeconds = (true?this.getSeconds(): 0); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "seconds", theSeconds), currentHashCode, theSeconds); } 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 CertificateLifetime)) { return false; } if (this == object) { return true; } final CertificateLifetime that = ((CertificateLifetime) object); { int lhsHours; lhsHours = (true?this.getHours(): 0); int rhsHours; rhsHours = (true?that.getHours(): 0); if (!strategy.equals(LocatorUtils.property(thisLocator, "hours", lhsHours), LocatorUtils.property(thatLocator, "hours", rhsHours), lhsHours, rhsHours)) { return false; } } { int lhsMinutes; lhsMinutes = (true?this.getMinutes(): 0); int rhsMinutes; rhsMinutes = (true?that.getMinutes(): 0); if (!strategy.equals(LocatorUtils.property(thisLocator, "minutes", lhsMinutes), LocatorUtils.property(thatLocator, "minutes", rhsMinutes), lhsMinutes, rhsMinutes)) { return false; } } { int lhsSeconds; lhsSeconds = (true?this.getSeconds(): 0); int rhsSeconds; rhsSeconds = (true?that.getSeconds(): 0); if (!strategy.equals(LocatorUtils.property(thisLocator, "seconds", lhsSeconds), LocatorUtils.property(thatLocator, "seconds", rhsSeconds), lhsSeconds, rhsSeconds)) { return false; } } return true; } public boolean equals(Object object) { final EqualsStrategy strategy = JAXBEqualsStrategy.INSTANCE; return equals(null, null, object, strategy); } }