![JAR search and dependency download from the Maven repository](/logo.png)
com.sun.enterprise.admin.servermgmt.xml.domaininfo.DomainInfo 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.domaininfo;
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 DomainInfo complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
{@code
*
*
*
*
*
*
*
*
*
*
*
*
* }
*
*
*/
@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 - 2025 Weber Informatics LLC | Privacy Policy