org.somda.sdc.biceps.model.participant.AbstractOperationState Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of biceps-model Show documentation
Show all versions of biceps-model Show documentation
SDCri is a set of Java libraries that implements a network communication framework conforming
with the IEEE 11073 SDC specifications. This project implements the model for
IEEE 11073-10207.
The newest version!
package org.somda.sdc.biceps.model.participant;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlSeeAlso;
import jakarta.xml.bind.annotation.XmlType;
import org.jvnet.jaxb.lang.CopyStrategy;
import org.jvnet.jaxb.lang.CopyTo;
import org.jvnet.jaxb.lang.JAXBCopyStrategy;
import org.jvnet.jaxb.lang.JAXBToStringStrategy;
import org.jvnet.jaxb.lang.ToString;
import org.jvnet.jaxb.lang.ToStringStrategy;
import org.jvnet.jaxb.locator.ObjectLocator;
import org.jvnet.jaxb.locator.util.LocatorUtils;
/**
* State of an operation that is exposed on the SCO.
*
* Java class for AbstractOperationState complex type
.
*
* The following schema fragment specifies the expected content contained within this class.
*
* {@code
*
*
*
*
*
*
*
* }
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "AbstractOperationState", namespace = "http://standards.ieee.org/downloads/11073/11073-10207-2017/participant")
@XmlSeeAlso({
SetValueOperationState.class,
SetStringOperationState.class,
ActivateOperationState.class,
SetContextStateOperationState.class,
SetMetricStateOperationState.class,
SetComponentStateOperationState.class,
SetAlertStateOperationState.class
})
public class AbstractOperationState
extends AbstractState
implements Cloneable, CopyTo, ToString
{
/**
* Operating mode that defines if the operation is accessible.
*
*/
@XmlAttribute(name = "OperatingMode", required = true)
protected OperatingMode operatingMode;
/**
* Operating mode that defines if the operation is accessible.
*
* @return
* possible object is
* {@link OperatingMode }
*
*/
public OperatingMode getOperatingMode() {
return operatingMode;
}
/**
* Sets the value of the operatingMode property.
*
* @param value
* allowed object is
* {@link OperatingMode }
*
* @see #getOperatingMode()
*/
public void setOperatingMode(OperatingMode value) {
this.operatingMode = value;
}
@Override
public boolean equals(Object object) {
if ((object == null)||(this.getClass()!= object.getClass())) {
return false;
}
if (this == object) {
return true;
}
if (!super.equals(object)) {
return false;
}
final AbstractOperationState that = ((AbstractOperationState) object);
{
OperatingMode leftOperatingMode;
leftOperatingMode = this.getOperatingMode();
OperatingMode rightOperatingMode;
rightOperatingMode = that.getOperatingMode();
if (this.operatingMode!= null) {
if (that.operatingMode!= null) {
if (!leftOperatingMode.equals(rightOperatingMode)) {
return false;
}
} else {
return false;
}
} else {
if (that.operatingMode!= null) {
return false;
}
}
}
return true;
}
@Override
public int hashCode() {
int currentHashCode = 1;
currentHashCode = ((currentHashCode* 31)+ super.hashCode());
{
currentHashCode = (currentHashCode* 31);
OperatingMode theOperatingMode;
theOperatingMode = this.getOperatingMode();
if (this.operatingMode!= null) {
currentHashCode += theOperatingMode.hashCode();
}
}
return currentHashCode;
}
@Override
public String toString() {
final ToStringStrategy strategy = JAXBToStringStrategy.getInstance();
final StringBuilder buffer = new StringBuilder();
append(null, buffer, strategy);
return buffer.toString();
}
@Override
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;
}
@Override
public StringBuilder appendFields(ObjectLocator locator, StringBuilder buffer, ToStringStrategy strategy) {
super.appendFields(locator, buffer, strategy);
{
OperatingMode theOperatingMode;
theOperatingMode = this.getOperatingMode();
strategy.appendField(locator, this, "operatingMode", buffer, theOperatingMode, (this.operatingMode!= null));
}
return buffer;
}
@Override
public Object clone() {
return copyTo(createNewInstance());
}
@Override
public Object copyTo(Object target) {
final CopyStrategy strategy = JAXBCopyStrategy.getInstance();
return copyTo(null, target, strategy);
}
@Override
public Object copyTo(ObjectLocator locator, Object target, CopyStrategy strategy) {
final Object draftCopy = ((target == null)?createNewInstance():target);
super.copyTo(locator, draftCopy, strategy);
if (draftCopy instanceof AbstractOperationState) {
final AbstractOperationState copy = ((AbstractOperationState) draftCopy);
{
Boolean operatingModeShouldBeCopiedAndSet = strategy.shouldBeCopiedAndSet(locator, (this.operatingMode!= null));
if (operatingModeShouldBeCopiedAndSet == Boolean.TRUE) {
OperatingMode sourceOperatingMode;
sourceOperatingMode = this.getOperatingMode();
OperatingMode copyOperatingMode = ((OperatingMode) strategy.copy(LocatorUtils.property(locator, "operatingMode", sourceOperatingMode), sourceOperatingMode, (this.operatingMode!= null)));
copy.setOperatingMode(copyOperatingMode);
} else {
if (operatingModeShouldBeCopiedAndSet == Boolean.FALSE) {
copy.operatingMode = null;
}
}
}
}
return draftCopy;
}
@Override
public Object createNewInstance() {
return new AbstractOperationState();
}
}