com.cisco.oss.foundation.configuration.xml.jaxb.NamespaceParameters Maven / Gradle / Ivy
Show all versions of configuration-api Show documentation
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2014.08.11 at 06:03:39 AM EDT
//
package com.cisco.oss.foundation.configuration.xml.jaxb;
import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
import org.jvnet.jaxb2_commons.lang.CopyStrategy;
import org.jvnet.jaxb2_commons.lang.CopyTo;
import org.jvnet.jaxb2_commons.lang.Equals;
import org.jvnet.jaxb2_commons.lang.EqualsStrategy;
import org.jvnet.jaxb2_commons.lang.JAXBCopyStrategy;
import org.jvnet.jaxb2_commons.lang.JAXBEqualsStrategy;
import org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy;
import org.jvnet.jaxb2_commons.lang.ToString;
import org.jvnet.jaxb2_commons.lang.ToStringStrategy;
import org.jvnet.jaxb2_commons.locator.ObjectLocator;
import org.jvnet.jaxb2_commons.locator.util.LocatorUtils;
/**
* Java class for NamespaceParameters complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="NamespaceParameters">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="NamespaceIdentifier" type="{}NamespaceIdentifier"/>
* <element name="Parameter" type="{}Parameter" maxOccurs="unbounded"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "NamespaceParameters", propOrder = {
"namespaceIdentifier",
"parameters"
})
public class NamespaceParameters
implements Cloneable, CopyTo, Equals, ToString
{
@XmlElement(name = "NamespaceIdentifier", required = true)
protected NamespaceIdentifier namespaceIdentifier;
@XmlElement(name = "Parameter", required = true)
protected List parameters;
/**
* Gets the value of the namespaceIdentifier property.
*
* @return
* possible object is
* {@link NamespaceIdentifier }
*
*/
public NamespaceIdentifier getNamespaceIdentifier() {
return namespaceIdentifier;
}
/**
* Sets the value of the namespaceIdentifier property.
*
* @param value
* allowed object is
* {@link NamespaceIdentifier }
*
*/
public void setNamespaceIdentifier(NamespaceIdentifier value) {
this.namespaceIdentifier = value;
}
/**
* Gets the value of the parameters 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 parameters property.
*
*
* For example, to add a new item, do as follows:
*
* getParameters().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link Parameter }
*
*
*/
public List getParameters() {
if (parameters == null) {
parameters = new ArrayList();
}
return this.parameters;
}
/**
* Sets the value of the parameters property.
*
* @param parameters
* allowed object is
* {@link Parameter }
*
*/
public void setParameters(List parameters) {
this.parameters = parameters;
}
public String toString() {
final ToStringStrategy strategy = JAXBToStringStrategy.INSTANCE;
final StringBuilder buffer = new StringBuilder();
append(null, buffer, strategy);
return buffer.toString();
}
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;
}
public StringBuilder appendFields(ObjectLocator locator, StringBuilder buffer, ToStringStrategy strategy) {
{
NamespaceIdentifier theNamespaceIdentifier;
theNamespaceIdentifier = this.getNamespaceIdentifier();
strategy.appendField(locator, this, "namespaceIdentifier", buffer, theNamespaceIdentifier);
}
{
List theParameters;
theParameters = (((this.parameters!= null)&&(!this.parameters.isEmpty()))?this.getParameters():null);
strategy.appendField(locator, this, "parameters", buffer, theParameters);
}
return buffer;
}
public Object clone() {
return copyTo(createNewInstance());
}
public Object copyTo(Object target) {
final CopyStrategy strategy = JAXBCopyStrategy.INSTANCE;
return copyTo(null, target, strategy);
}
public Object copyTo(ObjectLocator locator, Object target, CopyStrategy strategy) {
final Object draftCopy = ((target == null)?createNewInstance():target);
if (draftCopy instanceof NamespaceParameters) {
final NamespaceParameters copy = ((NamespaceParameters) draftCopy);
if (this.namespaceIdentifier!= null) {
NamespaceIdentifier sourceNamespaceIdentifier;
sourceNamespaceIdentifier = this.getNamespaceIdentifier();
NamespaceIdentifier copyNamespaceIdentifier = ((NamespaceIdentifier) strategy.copy(LocatorUtils.property(locator, "namespaceIdentifier", sourceNamespaceIdentifier), sourceNamespaceIdentifier));
copy.setNamespaceIdentifier(copyNamespaceIdentifier);
} else {
copy.namespaceIdentifier = null;
}
if ((this.parameters!= null)&&(!this.parameters.isEmpty())) {
List sourceParameters;
sourceParameters = (((this.parameters!= null)&&(!this.parameters.isEmpty()))?this.getParameters():null);
@SuppressWarnings("unchecked")
List copyParameters = ((List ) strategy.copy(LocatorUtils.property(locator, "parameters", sourceParameters), sourceParameters));
copy.setParameters(copyParameters);
} else {
copy.parameters = null;
}
}
return draftCopy;
}
public Object createNewInstance() {
return new NamespaceParameters();
}
public boolean equals(ObjectLocator thisLocator, ObjectLocator thatLocator, Object object, EqualsStrategy strategy) {
if (!(object instanceof NamespaceParameters)) {
return false;
}
if (this == object) {
return true;
}
final NamespaceParameters that = ((NamespaceParameters) object);
{
NamespaceIdentifier lhsNamespaceIdentifier;
lhsNamespaceIdentifier = this.getNamespaceIdentifier();
NamespaceIdentifier rhsNamespaceIdentifier;
rhsNamespaceIdentifier = that.getNamespaceIdentifier();
if (!strategy.equals(LocatorUtils.property(thisLocator, "namespaceIdentifier", lhsNamespaceIdentifier), LocatorUtils.property(thatLocator, "namespaceIdentifier", rhsNamespaceIdentifier), lhsNamespaceIdentifier, rhsNamespaceIdentifier)) {
return false;
}
}
{
List lhsParameters;
lhsParameters = (((this.parameters!= null)&&(!this.parameters.isEmpty()))?this.getParameters():null);
List rhsParameters;
rhsParameters = (((that.parameters!= null)&&(!that.parameters.isEmpty()))?that.getParameters():null);
if (!strategy.equals(LocatorUtils.property(thisLocator, "parameters", lhsParameters), LocatorUtils.property(thatLocator, "parameters", rhsParameters), lhsParameters, rhsParameters)) {
return false;
}
}
return true;
}
public boolean equals(Object object) {
final EqualsStrategy strategy = JAXBEqualsStrategy.INSTANCE;
return equals(null, null, object, strategy);
}
}