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

org.finra.herd.model.api.xml.BusinessObjectDefinitionDescriptionSuggestion Maven / Gradle / Ivy

Go to download

This project contains the model API classes compiled for JDK 1.5 and above. This project depends on herd-model-api and should not contain any actual files.

There is a newer version: 0.160.0
Show newest version

package org.finra.herd.model.api.xml;

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.XmlRootElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;
import org.jvnet.jaxb2_commons.lang.CopyStrategy2;
import org.jvnet.jaxb2_commons.lang.CopyTo2;
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.JAXBCopyStrategy;
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 businessObjectDefinitionDescriptionSuggestion complex type. * *

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

 * <complexType name="businessObjectDefinitionDescriptionSuggestion">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <all>
 *         <element name="id" type="{http://www.w3.org/2001/XMLSchema}long"/>
 *         <element name="businessObjectDefinitionDescriptionSuggestionKey" type="{}businessObjectDefinitionDescriptionSuggestionKey"/>
 *         <element name="descriptionSuggestion" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="status" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="createdByUserId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="createdOn" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
 *       </all>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "businessObjectDefinitionDescriptionSuggestion", propOrder = { }) @XmlRootElement(name = "businessObjectDefinitionDescriptionSuggestion") public class BusinessObjectDefinitionDescriptionSuggestion implements Serializable, Cloneable, CopyTo2, Equals2, HashCode2, ToString2 { private final static long serialVersionUID = -1L; protected long id; @XmlElement(required = true) protected BusinessObjectDefinitionDescriptionSuggestionKey businessObjectDefinitionDescriptionSuggestionKey; protected String descriptionSuggestion; protected String status; protected String createdByUserId; @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar createdOn; /** * Default no-arg constructor * */ public BusinessObjectDefinitionDescriptionSuggestion() { super(); } /** * Fully-initialising value constructor * */ public BusinessObjectDefinitionDescriptionSuggestion(final long id, final BusinessObjectDefinitionDescriptionSuggestionKey businessObjectDefinitionDescriptionSuggestionKey, final String descriptionSuggestion, final String status, final String createdByUserId, final XMLGregorianCalendar createdOn) { this.id = id; this.businessObjectDefinitionDescriptionSuggestionKey = businessObjectDefinitionDescriptionSuggestionKey; this.descriptionSuggestion = descriptionSuggestion; this.status = status; this.createdByUserId = createdByUserId; this.createdOn = createdOn; } /** * Gets the value of the id property. * */ public long getId() { return id; } /** * Sets the value of the id property. * */ public void setId(long value) { this.id = value; } /** * Gets the value of the businessObjectDefinitionDescriptionSuggestionKey property. * * @return * possible object is * {@link BusinessObjectDefinitionDescriptionSuggestionKey } * */ public BusinessObjectDefinitionDescriptionSuggestionKey getBusinessObjectDefinitionDescriptionSuggestionKey() { return businessObjectDefinitionDescriptionSuggestionKey; } /** * Sets the value of the businessObjectDefinitionDescriptionSuggestionKey property. * * @param value * allowed object is * {@link BusinessObjectDefinitionDescriptionSuggestionKey } * */ public void setBusinessObjectDefinitionDescriptionSuggestionKey(BusinessObjectDefinitionDescriptionSuggestionKey value) { this.businessObjectDefinitionDescriptionSuggestionKey = value; } /** * Gets the value of the descriptionSuggestion property. * * @return * possible object is * {@link String } * */ public String getDescriptionSuggestion() { return descriptionSuggestion; } /** * Sets the value of the descriptionSuggestion property. * * @param value * allowed object is * {@link String } * */ public void setDescriptionSuggestion(String value) { this.descriptionSuggestion = value; } /** * Gets the value of the status property. * * @return * possible object is * {@link String } * */ public String getStatus() { return status; } /** * Sets the value of the status property. * * @param value * allowed object is * {@link String } * */ public void setStatus(String value) { this.status = value; } /** * Gets the value of the createdByUserId property. * * @return * possible object is * {@link String } * */ public String getCreatedByUserId() { return createdByUserId; } /** * Sets the value of the createdByUserId property. * * @param value * allowed object is * {@link String } * */ public void setCreatedByUserId(String value) { this.createdByUserId = value; } /** * Gets the value of the createdOn property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getCreatedOn() { return createdOn; } /** * Sets the value of the createdOn property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setCreatedOn(XMLGregorianCalendar value) { this.createdOn = value; } public String toString() { final ToStringStrategy2 strategy = JAXBToStringStrategy.INSTANCE; 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) { { long theId; theId = this.getId(); strategy.appendField(locator, this, "id", buffer, theId, true); } { BusinessObjectDefinitionDescriptionSuggestionKey theBusinessObjectDefinitionDescriptionSuggestionKey; theBusinessObjectDefinitionDescriptionSuggestionKey = this.getBusinessObjectDefinitionDescriptionSuggestionKey(); strategy.appendField(locator, this, "businessObjectDefinitionDescriptionSuggestionKey", buffer, theBusinessObjectDefinitionDescriptionSuggestionKey, (this.businessObjectDefinitionDescriptionSuggestionKey!= null)); } { String theDescriptionSuggestion; theDescriptionSuggestion = this.getDescriptionSuggestion(); strategy.appendField(locator, this, "descriptionSuggestion", buffer, theDescriptionSuggestion, (this.descriptionSuggestion!= null)); } { String theStatus; theStatus = this.getStatus(); strategy.appendField(locator, this, "status", buffer, theStatus, (this.status!= null)); } { String theCreatedByUserId; theCreatedByUserId = this.getCreatedByUserId(); strategy.appendField(locator, this, "createdByUserId", buffer, theCreatedByUserId, (this.createdByUserId!= null)); } { XMLGregorianCalendar theCreatedOn; theCreatedOn = this.getCreatedOn(); strategy.appendField(locator, this, "createdOn", buffer, theCreatedOn, (this.createdOn!= 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 BusinessObjectDefinitionDescriptionSuggestion that = ((BusinessObjectDefinitionDescriptionSuggestion) object); { long lhsId; lhsId = this.getId(); long rhsId; rhsId = that.getId(); if (!strategy.equals(LocatorUtils.property(thisLocator, "id", lhsId), LocatorUtils.property(thatLocator, "id", rhsId), lhsId, rhsId, true, true)) { return false; } } { BusinessObjectDefinitionDescriptionSuggestionKey lhsBusinessObjectDefinitionDescriptionSuggestionKey; lhsBusinessObjectDefinitionDescriptionSuggestionKey = this.getBusinessObjectDefinitionDescriptionSuggestionKey(); BusinessObjectDefinitionDescriptionSuggestionKey rhsBusinessObjectDefinitionDescriptionSuggestionKey; rhsBusinessObjectDefinitionDescriptionSuggestionKey = that.getBusinessObjectDefinitionDescriptionSuggestionKey(); if (!strategy.equals(LocatorUtils.property(thisLocator, "businessObjectDefinitionDescriptionSuggestionKey", lhsBusinessObjectDefinitionDescriptionSuggestionKey), LocatorUtils.property(thatLocator, "businessObjectDefinitionDescriptionSuggestionKey", rhsBusinessObjectDefinitionDescriptionSuggestionKey), lhsBusinessObjectDefinitionDescriptionSuggestionKey, rhsBusinessObjectDefinitionDescriptionSuggestionKey, (this.businessObjectDefinitionDescriptionSuggestionKey!= null), (that.businessObjectDefinitionDescriptionSuggestionKey!= null))) { return false; } } { String lhsDescriptionSuggestion; lhsDescriptionSuggestion = this.getDescriptionSuggestion(); String rhsDescriptionSuggestion; rhsDescriptionSuggestion = that.getDescriptionSuggestion(); if (!strategy.equals(LocatorUtils.property(thisLocator, "descriptionSuggestion", lhsDescriptionSuggestion), LocatorUtils.property(thatLocator, "descriptionSuggestion", rhsDescriptionSuggestion), lhsDescriptionSuggestion, rhsDescriptionSuggestion, (this.descriptionSuggestion!= null), (that.descriptionSuggestion!= null))) { return false; } } { String lhsStatus; lhsStatus = this.getStatus(); String rhsStatus; rhsStatus = that.getStatus(); if (!strategy.equals(LocatorUtils.property(thisLocator, "status", lhsStatus), LocatorUtils.property(thatLocator, "status", rhsStatus), lhsStatus, rhsStatus, (this.status!= null), (that.status!= null))) { return false; } } { String lhsCreatedByUserId; lhsCreatedByUserId = this.getCreatedByUserId(); String rhsCreatedByUserId; rhsCreatedByUserId = that.getCreatedByUserId(); if (!strategy.equals(LocatorUtils.property(thisLocator, "createdByUserId", lhsCreatedByUserId), LocatorUtils.property(thatLocator, "createdByUserId", rhsCreatedByUserId), lhsCreatedByUserId, rhsCreatedByUserId, (this.createdByUserId!= null), (that.createdByUserId!= null))) { return false; } } { XMLGregorianCalendar lhsCreatedOn; lhsCreatedOn = this.getCreatedOn(); XMLGregorianCalendar rhsCreatedOn; rhsCreatedOn = that.getCreatedOn(); if (!strategy.equals(LocatorUtils.property(thisLocator, "createdOn", lhsCreatedOn), LocatorUtils.property(thatLocator, "createdOn", rhsCreatedOn), lhsCreatedOn, rhsCreatedOn, (this.createdOn!= null), (that.createdOn!= null))) { return false; } } return true; } public boolean equals(Object object) { final EqualsStrategy2 strategy = JAXBEqualsStrategy.INSTANCE; return equals(null, null, object, strategy); } public int hashCode(ObjectLocator locator, HashCodeStrategy2 strategy) { int currentHashCode = 1; { long theId; theId = this.getId(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "id", theId), currentHashCode, theId, true); } { BusinessObjectDefinitionDescriptionSuggestionKey theBusinessObjectDefinitionDescriptionSuggestionKey; theBusinessObjectDefinitionDescriptionSuggestionKey = this.getBusinessObjectDefinitionDescriptionSuggestionKey(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "businessObjectDefinitionDescriptionSuggestionKey", theBusinessObjectDefinitionDescriptionSuggestionKey), currentHashCode, theBusinessObjectDefinitionDescriptionSuggestionKey, (this.businessObjectDefinitionDescriptionSuggestionKey!= null)); } { String theDescriptionSuggestion; theDescriptionSuggestion = this.getDescriptionSuggestion(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "descriptionSuggestion", theDescriptionSuggestion), currentHashCode, theDescriptionSuggestion, (this.descriptionSuggestion!= null)); } { String theStatus; theStatus = this.getStatus(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "status", theStatus), currentHashCode, theStatus, (this.status!= null)); } { String theCreatedByUserId; theCreatedByUserId = this.getCreatedByUserId(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "createdByUserId", theCreatedByUserId), currentHashCode, theCreatedByUserId, (this.createdByUserId!= null)); } { XMLGregorianCalendar theCreatedOn; theCreatedOn = this.getCreatedOn(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "createdOn", theCreatedOn), currentHashCode, theCreatedOn, (this.createdOn!= null)); } return currentHashCode; } public int hashCode() { final HashCodeStrategy2 strategy = JAXBHashCodeStrategy.INSTANCE; return this.hashCode(null, strategy); } public Object clone() { return copyTo(createNewInstance()); } public Object copyTo(Object target) { final CopyStrategy2 strategy = JAXBCopyStrategy.INSTANCE; return copyTo(null, target, strategy); } public Object copyTo(ObjectLocator locator, Object target, CopyStrategy2 strategy) { final Object draftCopy = ((target == null)?createNewInstance():target); if (draftCopy instanceof BusinessObjectDefinitionDescriptionSuggestion) { final BusinessObjectDefinitionDescriptionSuggestion copy = ((BusinessObjectDefinitionDescriptionSuggestion) draftCopy); { Boolean idShouldBeCopiedAndSet = strategy.shouldBeCopiedAndSet(locator, true); if (idShouldBeCopiedAndSet == Boolean.TRUE) { long sourceId; sourceId = this.getId(); long copyId = strategy.copy(LocatorUtils.property(locator, "id", sourceId), sourceId, true); copy.setId(copyId); } else { if (idShouldBeCopiedAndSet == Boolean.FALSE) { } } } { Boolean businessObjectDefinitionDescriptionSuggestionKeyShouldBeCopiedAndSet = strategy.shouldBeCopiedAndSet(locator, (this.businessObjectDefinitionDescriptionSuggestionKey!= null)); if (businessObjectDefinitionDescriptionSuggestionKeyShouldBeCopiedAndSet == Boolean.TRUE) { BusinessObjectDefinitionDescriptionSuggestionKey sourceBusinessObjectDefinitionDescriptionSuggestionKey; sourceBusinessObjectDefinitionDescriptionSuggestionKey = this.getBusinessObjectDefinitionDescriptionSuggestionKey(); BusinessObjectDefinitionDescriptionSuggestionKey copyBusinessObjectDefinitionDescriptionSuggestionKey = ((BusinessObjectDefinitionDescriptionSuggestionKey) strategy.copy(LocatorUtils.property(locator, "businessObjectDefinitionDescriptionSuggestionKey", sourceBusinessObjectDefinitionDescriptionSuggestionKey), sourceBusinessObjectDefinitionDescriptionSuggestionKey, (this.businessObjectDefinitionDescriptionSuggestionKey!= null))); copy.setBusinessObjectDefinitionDescriptionSuggestionKey(copyBusinessObjectDefinitionDescriptionSuggestionKey); } else { if (businessObjectDefinitionDescriptionSuggestionKeyShouldBeCopiedAndSet == Boolean.FALSE) { copy.businessObjectDefinitionDescriptionSuggestionKey = null; } } } { Boolean descriptionSuggestionShouldBeCopiedAndSet = strategy.shouldBeCopiedAndSet(locator, (this.descriptionSuggestion!= null)); if (descriptionSuggestionShouldBeCopiedAndSet == Boolean.TRUE) { String sourceDescriptionSuggestion; sourceDescriptionSuggestion = this.getDescriptionSuggestion(); String copyDescriptionSuggestion = ((String) strategy.copy(LocatorUtils.property(locator, "descriptionSuggestion", sourceDescriptionSuggestion), sourceDescriptionSuggestion, (this.descriptionSuggestion!= null))); copy.setDescriptionSuggestion(copyDescriptionSuggestion); } else { if (descriptionSuggestionShouldBeCopiedAndSet == Boolean.FALSE) { copy.descriptionSuggestion = null; } } } { Boolean statusShouldBeCopiedAndSet = strategy.shouldBeCopiedAndSet(locator, (this.status!= null)); if (statusShouldBeCopiedAndSet == Boolean.TRUE) { String sourceStatus; sourceStatus = this.getStatus(); String copyStatus = ((String) strategy.copy(LocatorUtils.property(locator, "status", sourceStatus), sourceStatus, (this.status!= null))); copy.setStatus(copyStatus); } else { if (statusShouldBeCopiedAndSet == Boolean.FALSE) { copy.status = null; } } } { Boolean createdByUserIdShouldBeCopiedAndSet = strategy.shouldBeCopiedAndSet(locator, (this.createdByUserId!= null)); if (createdByUserIdShouldBeCopiedAndSet == Boolean.TRUE) { String sourceCreatedByUserId; sourceCreatedByUserId = this.getCreatedByUserId(); String copyCreatedByUserId = ((String) strategy.copy(LocatorUtils.property(locator, "createdByUserId", sourceCreatedByUserId), sourceCreatedByUserId, (this.createdByUserId!= null))); copy.setCreatedByUserId(copyCreatedByUserId); } else { if (createdByUserIdShouldBeCopiedAndSet == Boolean.FALSE) { copy.createdByUserId = null; } } } { Boolean createdOnShouldBeCopiedAndSet = strategy.shouldBeCopiedAndSet(locator, (this.createdOn!= null)); if (createdOnShouldBeCopiedAndSet == Boolean.TRUE) { XMLGregorianCalendar sourceCreatedOn; sourceCreatedOn = this.getCreatedOn(); XMLGregorianCalendar copyCreatedOn = ((XMLGregorianCalendar) strategy.copy(LocatorUtils.property(locator, "createdOn", sourceCreatedOn), sourceCreatedOn, (this.createdOn!= null))); copy.setCreatedOn(copyCreatedOn); } else { if (createdOnShouldBeCopiedAndSet == Boolean.FALSE) { copy.createdOn = null; } } } } return draftCopy; } public Object createNewInstance() { return new BusinessObjectDefinitionDescriptionSuggestion(); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy