org.glassfish.admin.ncli.metadata.OptionDesc 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 = "option-desc")
public class OptionDesc {
@XmlAttribute(required = true)
@XmlJavaTypeAdapter(NormalizedStringAdapter.class)
protected String name;
@XmlAttribute
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
protected String required;
@XmlAttribute
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
protected String type;
@XmlAttribute
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
protected String repeats;
@XmlAttribute
@XmlJavaTypeAdapter(NormalizedStringAdapter.class)
protected String symbol;
@XmlAttribute(name = "default-value")
@XmlJavaTypeAdapter(NormalizedStringAdapter.class)
protected String defaultValue;
@XmlAttribute(name = "legal-values")
@XmlJavaTypeAdapter(NormalizedStringAdapter.class)
protected String legalValues;
@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 required property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getRequired() {
if (required == null) {
return "FALSE";
} else {
return required;
}
}
/**
* Sets the value of the required property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setRequired(String value) {
this.required = 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 repeats property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getRepeats() {
if (repeats == null) {
return "FALSE";
} else {
return repeats;
}
}
/**
* Sets the value of the repeats property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setRepeats(String value) {
this.repeats = value;
}
/**
* Gets the value of the symbol property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSymbol() {
return symbol;
}
/**
* Sets the value of the symbol property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSymbol(String value) {
this.symbol = value;
}
/**
* Gets the value of the defaultValue property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDefaultValue() {
return defaultValue;
}
/**
* Sets the value of the defaultValue property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDefaultValue(String value) {
this.defaultValue = value;
}
/**
* Gets the value of the legalValues property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getLegalValues() {
return legalValues;
}
/**
* Sets the value of the legalValues property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setLegalValues(String value) {
this.legalValues = 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