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 Eclipse Implementation of JAXB, v4.0.1
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
//
package com.sun.enterprise.admin.servermgmt.xml.stringsubs;
import java.util.ArrayList;
import java.util.List;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlRootElement;
import jakarta.xml.bind.annotation.XmlType;
/**
* Java class for anonymous complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
{@code
*
*
*
*
*
*
*
*
*
*
*
*
*
* }
*
*
*/
@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 Jakarta XML Binding object.
* This is why there is not a {@code 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 }
*
*
* @return
* The value of the fileEntry property.
*/
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 Jakarta XML Binding object.
* This is why there is not a {@code 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 }
*
*
* @return
* The value of the archive property.
*/
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 Jakarta XML Binding object.
* This is why there is not a {@code 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 }
*
*
* @return
* The value of the changePairRef property.
*/
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;
}
}