com.sun.enterprise.admin.servermgmt.xml.stringsubs.Group 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: 2018.02.06 at 03:33:51 PM GMT
//
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.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for anonymous complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element ref="{http://xmlns.oracle.com/cie/glassfish/stringsubs}file-entry" maxOccurs="unbounded" minOccurs="0"/>
* <element ref="{http://xmlns.oracle.com/cie/glassfish/stringsubs}archive" maxOccurs="unbounded" minOccurs="0"/>
* <element ref="{http://xmlns.oracle.com/cie/glassfish/stringsubs}change-pair-ref" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* <attribute name="id" use="required" type="{http://xmlns.oracle.com/cie/glassfish/stringsubs}non-empty-string" />
* <attribute name="mode" type="{http://xmlns.oracle.com/cie/glassfish/stringsubs}modeType" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"fileEntry",
"archive",
"changePairRef"
})
@XmlRootElement(name = "group")
public class Group {
@XmlElement(name = "file-entry")
protected List fileEntry;
protected List archive;
@XmlElement(name = "change-pair-ref")
protected List changePairRef;
@XmlAttribute(name = "id", required = true)
protected String id;
@XmlAttribute(name = "mode")
protected ModeType mode;
/**
* Gets the value of the fileEntry 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 fileEntry property.
*
*
* For example, to add a new item, do as follows:
*
* getFileEntry().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link FileEntry }
*
*
*/
public List getFileEntry() {
if (fileEntry == null) {
fileEntry = new ArrayList();
}
return this.fileEntry;
}
/**
* Gets the value of the archive 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 archive property.
*
*
* For example, to add a new item, do as follows:
*
* getArchive().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link Archive }
*
*
*/
public List getArchive() {
if (archive == null) {
archive = new ArrayList();
}
return this.archive;
}
/**
* Gets the value of the changePairRef 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 changePairRef property.
*
*
* For example, to add a new item, do as follows:
*
* getChangePairRef().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link ChangePairRef }
*
*
*/
public List getChangePairRef() {
if (changePairRef == null) {
changePairRef = new ArrayList();
}
return this.changePairRef;
}
/**
* Gets the value of the id property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getId() {
return id;
}
/**
* Sets the value of the id property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setId(String value) {
this.id = value;
}
/**
* Gets the value of the mode property.
*
* @return
* possible object is
* {@link ModeType }
*
*/
public ModeType getMode() {
return mode;
}
/**
* Sets the value of the mode property.
*
* @param value
* allowed object is
* {@link ModeType }
*
*/
public void setMode(ModeType value) {
this.mode = value;
}
}