org.finra.herd.model.api.xml.EmrClusterDefinitionCapacityReservationOptions Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of herd-model-api-15 Show documentation
Show all versions of herd-model-api-15 Show documentation
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.
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.XmlType;
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 emrClusterDefinitionCapacityReservationOptions complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="emrClusterDefinitionCapacityReservationOptions">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <all>
* <element name="usageStrategy" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="capacityReservationPreference" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </all>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "emrClusterDefinitionCapacityReservationOptions", propOrder = {
})
public class EmrClusterDefinitionCapacityReservationOptions implements Serializable, Cloneable, CopyTo2, Equals2, HashCode2, ToString2
{
private final static long serialVersionUID = -1L;
protected String usageStrategy;
protected String capacityReservationPreference;
/**
* Default no-arg constructor
*
*/
public EmrClusterDefinitionCapacityReservationOptions() {
super();
}
/**
* Fully-initialising value constructor
*
*/
public EmrClusterDefinitionCapacityReservationOptions(final String usageStrategy, final String capacityReservationPreference) {
this.usageStrategy = usageStrategy;
this.capacityReservationPreference = capacityReservationPreference;
}
/**
* Gets the value of the usageStrategy property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getUsageStrategy() {
return usageStrategy;
}
/**
* Sets the value of the usageStrategy property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setUsageStrategy(String value) {
this.usageStrategy = value;
}
/**
* Gets the value of the capacityReservationPreference property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCapacityReservationPreference() {
return capacityReservationPreference;
}
/**
* Sets the value of the capacityReservationPreference property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCapacityReservationPreference(String value) {
this.capacityReservationPreference = 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 theUsageStrategy;
theUsageStrategy = this.getUsageStrategy();
strategy.appendField(locator, this, "usageStrategy", buffer, theUsageStrategy, (this.usageStrategy!= null));
}
{
String theCapacityReservationPreference;
theCapacityReservationPreference = this.getCapacityReservationPreference();
strategy.appendField(locator, this, "capacityReservationPreference", buffer, theCapacityReservationPreference, (this.capacityReservationPreference!= 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 EmrClusterDefinitionCapacityReservationOptions that = ((EmrClusterDefinitionCapacityReservationOptions) object);
{
String lhsUsageStrategy;
lhsUsageStrategy = this.getUsageStrategy();
String rhsUsageStrategy;
rhsUsageStrategy = that.getUsageStrategy();
if (!strategy.equals(LocatorUtils.property(thisLocator, "usageStrategy", lhsUsageStrategy), LocatorUtils.property(thatLocator, "usageStrategy", rhsUsageStrategy), lhsUsageStrategy, rhsUsageStrategy, (this.usageStrategy!= null), (that.usageStrategy!= null))) {
return false;
}
}
{
String lhsCapacityReservationPreference;
lhsCapacityReservationPreference = this.getCapacityReservationPreference();
String rhsCapacityReservationPreference;
rhsCapacityReservationPreference = that.getCapacityReservationPreference();
if (!strategy.equals(LocatorUtils.property(thisLocator, "capacityReservationPreference", lhsCapacityReservationPreference), LocatorUtils.property(thatLocator, "capacityReservationPreference", rhsCapacityReservationPreference), lhsCapacityReservationPreference, rhsCapacityReservationPreference, (this.capacityReservationPreference!= null), (that.capacityReservationPreference!= 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 theUsageStrategy;
theUsageStrategy = this.getUsageStrategy();
currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "usageStrategy", theUsageStrategy), currentHashCode, theUsageStrategy, (this.usageStrategy!= null));
}
{
String theCapacityReservationPreference;
theCapacityReservationPreference = this.getCapacityReservationPreference();
currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "capacityReservationPreference", theCapacityReservationPreference), currentHashCode, theCapacityReservationPreference, (this.capacityReservationPreference!= 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 EmrClusterDefinitionCapacityReservationOptions) {
final EmrClusterDefinitionCapacityReservationOptions copy = ((EmrClusterDefinitionCapacityReservationOptions) draftCopy);
{
Boolean usageStrategyShouldBeCopiedAndSet = strategy.shouldBeCopiedAndSet(locator, (this.usageStrategy!= null));
if (usageStrategyShouldBeCopiedAndSet == Boolean.TRUE) {
String sourceUsageStrategy;
sourceUsageStrategy = this.getUsageStrategy();
String copyUsageStrategy = ((String) strategy.copy(LocatorUtils.property(locator, "usageStrategy", sourceUsageStrategy), sourceUsageStrategy, (this.usageStrategy!= null)));
copy.setUsageStrategy(copyUsageStrategy);
} else {
if (usageStrategyShouldBeCopiedAndSet == Boolean.FALSE) {
copy.usageStrategy = null;
}
}
}
{
Boolean capacityReservationPreferenceShouldBeCopiedAndSet = strategy.shouldBeCopiedAndSet(locator, (this.capacityReservationPreference!= null));
if (capacityReservationPreferenceShouldBeCopiedAndSet == Boolean.TRUE) {
String sourceCapacityReservationPreference;
sourceCapacityReservationPreference = this.getCapacityReservationPreference();
String copyCapacityReservationPreference = ((String) strategy.copy(LocatorUtils.property(locator, "capacityReservationPreference", sourceCapacityReservationPreference), sourceCapacityReservationPreference, (this.capacityReservationPreference!= null)));
copy.setCapacityReservationPreference(copyCapacityReservationPreference);
} else {
if (capacityReservationPreferenceShouldBeCopiedAndSet == Boolean.FALSE) {
copy.capacityReservationPreference = null;
}
}
}
}
return draftCopy;
}
public Object createNewInstance() {
return new EmrClusterDefinitionCapacityReservationOptions();
}
}