com.sun.enterprise.admin.servermgmt.xml.domaininfo.DomainInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of payara-micro Show documentation
Show all versions of payara-micro Show documentation
Micro Distribution of the Payara Project for IBM JDK
//
// 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.domaininfo;
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 DomainInfo complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="DomainInfo">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="domain-template-ref" type="{http://xmlns.oracle.com/cie/glassfish/domain-info}TemplateRef"/>
* </sequence>
* <attribute name="appdir" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="javahome" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="mwhome" type="{http://www.w3.org/2001/XMLSchema}string" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "DomainInfo", propOrder = {
"domainTemplateRef"
})
public class DomainInfo {
@XmlElement(name = "domain-template-ref", required = true)
protected TemplateRef domainTemplateRef;
@XmlAttribute(name = "appdir", required = true)
protected String appdir;
@XmlAttribute(name = "javahome", required = true)
protected String javahome;
@XmlAttribute(name = "mwhome")
protected String mwhome;
/**
* Gets the value of the domainTemplateRef property.
*
* @return
* possible object is
* {@link TemplateRef }
*
*/
public TemplateRef getDomainTemplateRef() {
return domainTemplateRef;
}
/**
* Sets the value of the domainTemplateRef property.
*
* @param value
* allowed object is
* {@link TemplateRef }
*
*/
public void setDomainTemplateRef(TemplateRef value) {
this.domainTemplateRef = value;
}
/**
* Gets the value of the appdir property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAppdir() {
return appdir;
}
/**
* Sets the value of the appdir property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setAppdir(String value) {
this.appdir = value;
}
/**
* Gets the value of the javahome property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getJavahome() {
return javahome;
}
/**
* Sets the value of the javahome property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setJavahome(String value) {
this.javahome = value;
}
/**
* Gets the value of the mwhome property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getMwhome() {
return mwhome;
}
/**
* Sets the value of the mwhome property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setMwhome(String value) {
this.mwhome = value;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy