org.finra.herd.model.api.xml.CustomDdlUpdateRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of herd-model-api Show documentation
Show all versions of herd-model-api Show documentation
This project contains the model API classes. This contains the herd XSD and generates Java POJO's from them. These classes are used for incoming
and outgoing calls into the system (e.g. via REST).
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.XmlType;
import org.eclipse.persistence.oxm.annotations.XmlCDATA;
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 customDdlUpdateRequest complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="customDdlUpdateRequest">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <all>
* <element name="ddl" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </all>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "customDdlUpdateRequest", propOrder = {
})
@XmlRootElement(name = "customDdlUpdateRequest")
public class CustomDdlUpdateRequest implements Serializable, Cloneable, CopyTo2, Equals2, HashCode2, ToString2
{
private final static long serialVersionUID = -1L;
@XmlElement(required = true)
@XmlCDATA
protected String ddl;
/**
* Default no-arg constructor
*
*/
public CustomDdlUpdateRequest() {
super();
}
/**
* Fully-initialising value constructor
*
*/
public CustomDdlUpdateRequest(final String ddl) {
this.ddl = ddl;
}
/**
* Gets the value of the ddl property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDdl() {
return ddl;
}
/**
* Sets the value of the ddl property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDdl(String value) {
this.ddl = 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) {
{
String theDdl;
theDdl = this.getDdl();
strategy.appendField(locator, this, "ddl", buffer, theDdl, (this.ddl!= 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 CustomDdlUpdateRequest that = ((CustomDdlUpdateRequest) object);
{
String lhsDdl;
lhsDdl = this.getDdl();
String rhsDdl;
rhsDdl = that.getDdl();
if (!strategy.equals(LocatorUtils.property(thisLocator, "ddl", lhsDdl), LocatorUtils.property(thatLocator, "ddl", rhsDdl), lhsDdl, rhsDdl, (this.ddl!= null), (that.ddl!= 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;
{
String theDdl;
theDdl = this.getDdl();
currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "ddl", theDdl), currentHashCode, theDdl, (this.ddl!= 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 CustomDdlUpdateRequest) {
final CustomDdlUpdateRequest copy = ((CustomDdlUpdateRequest) draftCopy);
{
Boolean ddlShouldBeCopiedAndSet = strategy.shouldBeCopiedAndSet(locator, (this.ddl!= null));
if (ddlShouldBeCopiedAndSet == Boolean.TRUE) {
String sourceDdl;
sourceDdl = this.getDdl();
String copyDdl = ((String) strategy.copy(LocatorUtils.property(locator, "ddl", sourceDdl), sourceDdl, (this.ddl!= null)));
copy.setDdl(copyDdl);
} else {
if (ddlShouldBeCopiedAndSet == Boolean.FALSE) {
copy.ddl = null;
}
}
}
}
return draftCopy;
}
public Object createNewInstance() {
return new CustomDdlUpdateRequest();
}
}