org.glassfish.admin.ncli.metadata.OperandDesc Maven / Gradle / Ivy
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-833
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2010.06.23 at 06:33:07 AM PDT
//
package org.glassfish.admin.ncli.metadata;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
import javax.xml.bind.annotation.adapters.NormalizedStringAdapter;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
/**
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"overridingType"
})
@XmlRootElement(name = "operand-desc")
public class OperandDesc {
@XmlAttribute(required = true)
@XmlJavaTypeAdapter(NormalizedStringAdapter.class)
protected String name;
@XmlAttribute
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
protected String type;
@XmlAttribute
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
protected String cardinality;
@XmlElement(name = "overriding-type")
protected OverridingType overridingType;
/**
* Gets the value of the name property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getName() {
return name;
}
/**
* Sets the value of the name property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setName(String value) {
this.name = value;
}
/**
* Gets the value of the type property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getType() {
if (type == null) {
return "STRING";
} else {
return type;
}
}
/**
* Sets the value of the type property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setType(String value) {
this.type = value;
}
/**
* Gets the value of the cardinality property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCardinality() {
if (cardinality == null) {
return "ONE";
} else {
return cardinality;
}
}
/**
* Sets the value of the cardinality property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCardinality(String value) {
this.cardinality = value;
}
/**
* Gets the value of the overridingType property.
*
* @return
* possible object is
* {@link OverridingType }
*
*/
public OverridingType getOverridingType() {
return overridingType;
}
/**
* Sets the value of the overridingType property.
*
* @param value
* allowed object is
* {@link OverridingType }
*
*/
public void setOverridingType(OverridingType value) {
this.overridingType = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy