org.somda.sdc.biceps.model.message.SetContextState 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.message;
import java.util.ArrayList;
import java.util.List;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlRootElement;
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;
import org.somda.sdc.biceps.model.participant.AbstractContextState;
/**
* Java class for anonymous complex type
.
*
* The following schema fragment specifies the expected content contained within this class.
*
* {@code
*
*
*
*
*
*
*
*
*
* }
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"proposedContextState"
})
@XmlRootElement(name = "SetContextState", namespace = "http://standards.ieee.org/downloads/11073/11073-10207-2017/message")
public class SetContextState
extends AbstractSet
implements Cloneable, CopyTo, ToString
{
/**
* ProposedContextState comprises the context states that have to be inserted or updated:
*
* - If ProposedContextState/@Handle is equal ProposedContextState/@DescriptorHandle, the proposed object SHOULD be created as a new context state.
* - If ProposedContextState/@Handle is not equal ProposedContextState/@DescriptorHandle, the proposed object SHOULD be modified.
*
*/
@XmlElement(name = "ProposedContextState", namespace = "http://standards.ieee.org/downloads/11073/11073-10207-2017/message", required = true)
protected List proposedContextState;
/**
* ProposedContextState comprises the context states that have to be inserted or updated:
*
* - If ProposedContextState/@Handle is equal ProposedContextState/@DescriptorHandle, the proposed object SHOULD be created as a new context state.
* - If ProposedContextState/@Handle is not equal ProposedContextState/@DescriptorHandle, the proposed object SHOULD be modified.
*
* Gets the value of the proposedContextState property.
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the proposedContextState property.
*
*
* For example, to add a new item, do as follows:
*
*
* getProposedContextState().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link AbstractContextState }
*
*
*
* @return
* The value of the proposedContextState property.
*/
public List getProposedContextState() {
if (proposedContextState == null) {
proposedContextState = new ArrayList<>();
}
return this.proposedContextState;
}
public void setProposedContextState(List value) {
this.proposedContextState = null;
if (value!= null) {
List draftl = this.getProposedContextState();
draftl.addAll(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 SetContextState that = ((SetContextState) object);
{
List leftProposedContextState;
leftProposedContextState = (((this.proposedContextState!= null)&&(!this.proposedContextState.isEmpty()))?this.getProposedContextState():null);
List rightProposedContextState;
rightProposedContextState = (((that.proposedContextState!= null)&&(!that.proposedContextState.isEmpty()))?that.getProposedContextState():null);
if ((this.proposedContextState!= null)&&(!this.proposedContextState.isEmpty())) {
if ((that.proposedContextState!= null)&&(!that.proposedContextState.isEmpty())) {
if (!leftProposedContextState.equals(rightProposedContextState)) {
return false;
}
} else {
return false;
}
} else {
if ((that.proposedContextState!= null)&&(!that.proposedContextState.isEmpty())) {
return false;
}
}
}
return true;
}
@Override
public int hashCode() {
int currentHashCode = 1;
currentHashCode = ((currentHashCode* 31)+ super.hashCode());
{
currentHashCode = (currentHashCode* 31);
List theProposedContextState;
theProposedContextState = (((this.proposedContextState!= null)&&(!this.proposedContextState.isEmpty()))?this.getProposedContextState():null);
if ((this.proposedContextState!= null)&&(!this.proposedContextState.isEmpty())) {
currentHashCode += theProposedContextState.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);
{
List theProposedContextState;
theProposedContextState = (((this.proposedContextState!= null)&&(!this.proposedContextState.isEmpty()))?this.getProposedContextState():null);
strategy.appendField(locator, this, "proposedContextState", buffer, theProposedContextState, ((this.proposedContextState!= null)&&(!this.proposedContextState.isEmpty())));
}
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 SetContextState) {
final SetContextState copy = ((SetContextState) draftCopy);
{
Boolean proposedContextStateShouldBeCopiedAndSet = strategy.shouldBeCopiedAndSet(locator, ((this.proposedContextState!= null)&&(!this.proposedContextState.isEmpty())));
if (proposedContextStateShouldBeCopiedAndSet == Boolean.TRUE) {
List sourceProposedContextState;
sourceProposedContextState = (((this.proposedContextState!= null)&&(!this.proposedContextState.isEmpty()))?this.getProposedContextState():null);
@SuppressWarnings("unchecked")
List copyProposedContextState = ((List ) strategy.copy(LocatorUtils.property(locator, "proposedContextState", sourceProposedContextState), sourceProposedContextState, ((this.proposedContextState!= null)&&(!this.proposedContextState.isEmpty()))));
copy.setProposedContextState(copyProposedContextState);
} else {
if (proposedContextStateShouldBeCopiedAndSet == Boolean.FALSE) {
copy.proposedContextState = null;
}
}
}
}
return draftCopy;
}
@Override
public Object createNewInstance() {
return new SetContextState();
}
}