org.apache.geronimo.jee.naming
public class: Pattern [javadoc |
source]
java.lang.Object
org.apache.geronimo.jee.naming.Pattern
All Implemented Interfaces:
Serializable
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>
- version:
$ - Rev: 704567 $ $Date: 2008-10-14 23:45:57 +0800 (Tue, 14 Oct 2008) $
| Field Summary |
|---|
| protected String | groupId | |
| protected String | artifactId | |
| protected String | version | |
| protected String | module | |
| protected String | name | |
| Methods from java.lang.Object: |
|---|
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Method from org.apache.geronimo.jee.naming.Pattern Detail: |
public String getArtifactId() {
return artifactId;
}
Gets the value of the artifactId property. |
public String getGroupId() {
return groupId;
}
Gets the value of the groupId property. |
public String getModule() {
return module;
}
Gets the value of the module property. |
public String getName() {
return name;
}
Gets the value of the name property. |
public String getVersion() {
return version;
}
Gets the value of the version property. |
public void setArtifactId(String value) {
if (value == null || value.length() == 0)
this.artifactId = null;
else
this.artifactId = value;
}
Sets the value of the artifactId property. |
public void setGroupId(String value) {
if (value == null || value.length() == 0)
this.groupId = null;
else
this.groupId = value;
}
Sets the value of the groupId property. |
public void setModule(String value) {
if (value == null || value.length() == 0)
this.module = null;
else
this.module = value;
}
Sets the value of the module property. |
public void setName(String value) {
this.name = value;
}
Sets the value of the name property. |
public void setVersion(String value) {
if (value == null || value.length() == 0)
this.version = null;
else
this.version = value;
}
Sets the value of the version property. |