org.apache.geronimo.jee.naming
public class: EjbLocalRef [javadoc |
source]
java.lang.Object
org.apache.geronimo.jee.naming.EjbLocalRef
All Implemented Interfaces:
Serializable
Java class for ejb-local-refType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="ejb-local-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="ejb-link" 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 | ejbLink | |
| Methods from java.lang.Object: |
|---|
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Method from org.apache.geronimo.jee.naming.EjbLocalRef Detail: |
public String getEjbLink() {
return ejbLink;
}
Gets the value of the ejbLink property. |
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 void setEjbLink(String value) {
this.ejbLink = value;
}
Sets the value of the ejbLink 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. |