org.apache.geronimo.jee.naming
public class: ResourceRef [javadoc |
source]
java.lang.Object
org.apache.geronimo.jee.naming.ResourceRef
All Implemented Interfaces:
Serializable
Java class for resource-refType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="resource-refType">
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<sequence>
<element name="ref-name" type="{http://www.w3.org/2001/XMLSchema}string"/>
<choice>
<element name="pattern" type="{http://geronimo.apache.org/xml/ns/naming-1.2}patternType"/>
<element name="resource-link" type="{http://www.w3.org/2001/XMLSchema}string"/>
<element name="url" type="{http://www.w3.org/2001/XMLSchema}string"/>
</choice>
</sequence>
</restriction>
</complexContent>
</complexType>
- version:
$ - Rev: 642503 $ $Date: 2008-03-29 12:35:01 +0800 (Sat, 29 Mar 2008) $
| Field Summary |
|---|
| protected String | refName | |
| protected Pattern | pattern | |
| protected String | resourceLink | |
| protected String | url | |
| Methods from java.lang.Object: |
|---|
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Method from org.apache.geronimo.jee.naming.ResourceRef Detail: |
public Pattern getPattern() {
return pattern;
}
Gets the value of the pattern property. |
public String getRefName() {
return refName;
}
Gets the value of the refName property. |
public String getResourceLink() {
return resourceLink;
}
Gets the value of the resourceLink property. |
public String getUrl() {
return url;
}
Gets the value of the url property. |
public void setPattern(Pattern value) {
this.pattern = value;
}
Sets the value of the pattern property. |
public void setRefName(String value) {
this.refName = value;
}
Sets the value of the refName property. |
public void setResourceLink(String value) {
this.resourceLink = value;
}
Sets the value of the resourceLink property. |
public void setUrl(String value) {
this.url = value;
}
Sets the value of the url property. |