com.sun.enterprise.admin.servermgmt.xml.stringsubs.StringsubsDefinition Maven / Gradle / Ivy
Show all versions of payara-micro Show documentation
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-2
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2017.08.07 at 01:01:30 PM BST
//
package com.sun.enterprise.admin.servermgmt.xml.stringsubs;
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.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for StringsubsDefinition complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="StringsubsDefinition">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element ref="{http://xmlns.oracle.com/cie/glassfish/stringsubs}component" maxOccurs="unbounded" minOccurs="0"/>
* <element ref="{http://xmlns.oracle.com/cie/glassfish/stringsubs}group" maxOccurs="unbounded" minOccurs="0"/>
* <element ref="{http://xmlns.oracle.com/cie/glassfish/stringsubs}change-pair" maxOccurs="unbounded" minOccurs="0"/>
* <element ref="{http://xmlns.oracle.com/cie/glassfish/stringsubs}defaults" minOccurs="0"/>
* </sequence>
* <attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="version" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "StringsubsDefinition", propOrder = {
"component",
"group",
"changePair",
"defaults"
})
public class StringsubsDefinition {
protected List component;
protected List group;
@XmlElement(name = "change-pair")
protected List changePair;
protected Defaults defaults;
@XmlAttribute(name = "name", required = true)
protected String name;
@XmlAttribute(name = "version", required = true)
protected String version;
/**
* Gets the value of the component 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 component property.
*
*
* For example, to add a new item, do as follows:
*
* getComponent().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link Component }
*
*
*/
public List getComponent() {
if (component == null) {
component = new ArrayList();
}
return this.component;
}
/**
* Gets the value of the group 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 group property.
*
*
* For example, to add a new item, do as follows:
*
* getGroup().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link Group }
*
*
*/
public List getGroup() {
if (group == null) {
group = new ArrayList();
}
return this.group;
}
/**
* Gets the value of the changePair 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 changePair property.
*
*
* For example, to add a new item, do as follows:
*
* getChangePair().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link ChangePair }
*
*
*/
public List getChangePair() {
if (changePair == null) {
changePair = new ArrayList();
}
return this.changePair;
}
/**
* Gets the value of the defaults property.
*
* @return
* possible object is
* {@link Defaults }
*
*/
public Defaults getDefaults() {
return defaults;
}
/**
* Sets the value of the defaults property.
*
* @param value
* allowed object is
* {@link Defaults }
*
*/
public void setDefaults(Defaults value) {
this.defaults = value;
}
/**
* 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 version property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getVersion() {
return version;
}
/**
* Sets the value of the version property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setVersion(String value) {
this.version = value;
}
}