Package org.apache.openejb.jee
Class Module
- java.lang.Object
-
- org.apache.openejb.jee.Module
-
public class Module extends Object
application_6.xsdJava class for moduleType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="moduleType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <choice> <element name="connector" type="{http://java.sun.com/xml/ns/javaee}pathType"/> <element name="ejb" type="{http://java.sun.com/xml/ns/javaee}pathType"/> <element name="java" type="{http://java.sun.com/xml/ns/javaee}pathType"/> <element name="web" type="{http://java.sun.com/xml/ns/javaee}webType"/> </choice> <element name="alt-dd" type="{http://java.sun.com/xml/ns/javaee}pathType" minOccurs="0"/> </sequence> <attribute name="id" type="{http://www.w3.org/2001/XMLSchema}ID" /> </restriction> </complexContent> </complexType>
-
-
Constructor Summary
Constructors Constructor Description Module()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetAltDd()StringgetConnector()StringgetEjb()StringgetId()StringgetJava()WebgetWeb()voidsetAltDd(String altDd)voidsetConnector(String connector)voidsetEjb(String ejb)voidsetId(String id)voidsetJava(String java)voidsetWeb(Web web)
-
-
-
Method Detail
-
getAltDd
public String getAltDd()
-
setAltDd
public void setAltDd(String altDd)
-
getConnector
public String getConnector()
-
setConnector
public void setConnector(String connector)
-
getEjb
public String getEjb()
-
setEjb
public void setEjb(String ejb)
-
getId
public String getId()
-
setId
public void setId(String id)
-
getJava
public String getJava()
-
setJava
public void setJava(String java)
-
getWeb
public Web getWeb()
-
setWeb
public void setWeb(Web web)
-
-