Package org.apache.openejb.jee.oejb2
Class DepPatternType
- java.lang.Object
-
- org.apache.openejb.jee.oejb2.DepPatternType
-
- Direct Known Subclasses:
ReferenceType
public class DepPatternType extends Object
Java class for patternType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="patternType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="groupId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> <element name="artifactId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> <element name="version" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> <element name="module" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/> </sequence> </restriction> </complexContent> </complexType>
-
-
Constructor Summary
Constructors Constructor Description DepPatternType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetArtifactId()StringgetGroupId()StringgetModule()StringgetName()StringgetType()StringgetVersion()voidsetArtifactId(String artifactId)voidsetGroupId(String groupId)voidsetModule(String module)voidsetName(String name)voidsetType(String type)voidsetVersion(String version)
-
-
-
Method Detail
-
getGroupId
public String getGroupId()
-
setGroupId
public void setGroupId(String groupId)
-
getArtifactId
public String getArtifactId()
-
setArtifactId
public void setArtifactId(String artifactId)
-
getVersion
public String getVersion()
-
setVersion
public void setVersion(String version)
-
getModule
public String getModule()
-
setModule
public void setModule(String module)
-
getType
public String getType()
-
setType
public void setType(String type)
-
getName
public String getName()
-
setName
public void setName(String name)
-
-