![JAR search and dependency download from the Maven repository](/logo.png)
com.sun.enterprise.admin.servermgmt.xml.stringsubs.StringsubsDefinition Maven / Gradle / Ivy
//
// 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.XmlType;
/**
* Java class for StringsubsDefinition complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
{@code
*
*
*
*
*
*
*
*
*
*
*
*
*
*
* }
*
*
*/
@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 Jakarta XML Binding object.
* This is why there is not a {@code 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 }
*
*
* @return
* The value of the component property.
*/
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 Jakarta XML Binding object.
* This is why there is not a {@code 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 }
*
*
* @return
* The value of the group property.
*/
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 Jakarta XML Binding object.
* This is why there is not a {@code 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 }
*
*
* @return
* The value of the changePair property.
*/
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;
}
}