org.apache.geronimo.xml.ns.j2ee.application_1
public class: ExtModuleType [javadoc |
source]
java.lang.Object
org.apache.geronimo.xml.ns.j2ee.application_1.ExtModuleType
Mirrors the moduleType defined by application_1_4.xsd and adds an
optional alt-dd element defining a Geronimo specific deployment descriptor.
Java class for ext-moduleType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="ext-moduleType">
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<sequence>
<choice>
<element name="connector" type="{http://geronimo.apache.org/xml/ns/j2ee/application-1.1}pathType"/>
<element name="ejb" type="{http://geronimo.apache.org/xml/ns/j2ee/application-1.1}pathType"/>
<element name="java" type="{http://geronimo.apache.org/xml/ns/j2ee/application-1.1}pathType"/>
<element name="web" type="{http://geronimo.apache.org/xml/ns/j2ee/application-1.1}pathType"/>
</choice>
<choice>
<element name="internal-path" type="{http://www.w3.org/2001/XMLSchema}token"/>
<element name="external-path" type="{http://www.w3.org/2001/XMLSchema}token"/>
</choice>
<any/>
</sequence>
</restriction>
</complexContent>
</complexType>
Field Summary |
---|
protected PathType | connector | |
protected PathType | ejb | |
protected PathType | java | |
protected PathType | web | |
protected String | internalPath | |
protected String | externalPath | |
protected Object | any | |
Method from org.apache.geronimo.xml.ns.j2ee.application_1.ExtModuleType Summary: |
---|
getAny, getConnector, getEjb, getExternalPath, getInternalPath, getJava, getWeb, setAny, setConnector, setEjb, setExternalPath, setInternalPath, setJava, setWeb |
Methods from java.lang.Object: |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Method from org.apache.geronimo.xml.ns.j2ee.application_1.ExtModuleType Detail: |
public Object getAny() {
return any;
}
Gets the value of the any property. |
public PathType getConnector() {
return connector;
}
Gets the value of the connector property. |
public PathType getEjb() {
return ejb;
}
Gets the value of the ejb property. |
public String getExternalPath() {
return externalPath;
}
Gets the value of the externalPath property. |
public String getInternalPath() {
return internalPath;
}
Gets the value of the internalPath property. |
public PathType getJava() {
return java;
}
Gets the value of the java property. |
public PathType getWeb() {
return web;
}
Gets the value of the web property. |
public void setAny(Object value) {
this.any = value;
}
Sets the value of the any property. |
public void setConnector(PathType value) {
this.connector = value;
}
Sets the value of the connector property. |
public void setEjb(PathType value) {
this.ejb = value;
}
Sets the value of the ejb property. |
public void setExternalPath(String value) {
this.externalPath = value;
}
Sets the value of the externalPath property. |
public void setInternalPath(String value) {
this.internalPath = value;
}
Sets the value of the internalPath property. |
public void setJava(PathType value) {
this.java = value;
}
Sets the value of the java property. |
public void setWeb(PathType value) {
this.web = value;
}
Sets the value of the web property. |