当前页面:
在线文档首页 >
Java Platform, Enterprise Edition v1.3.1 API Specifications
Java 2 Platform EE v1.3: Interface Referenceable - Java Platform, Enterprise Edition v1.3.1 API Specifications
javax.resource
Interface Referenceable
- All Superinterfaces:
- javax.naming.Referenceable
- All Known Subinterfaces:
- ConnectionFactory
- public interface Referenceable
- extends javax.naming.Referenceable
The Referenceable interface extends the javax.naming.Referenceable
interface. It enables support for JNDI Reference mechanism for
the registration of the connection factory in the JNDI name space.
Note that the implementation and structure of Reference is specific
to an application server.
The implementation class for a connection factory interface is
required to implement both java.io.Serializable and
javax.resource.Referenceable interfaces to support JNDI registration.
Method Summary |
void |
setReference(javax.naming.Reference reference)
Sets the Reference instance. |
Methods inherited from interface javax.naming.Referenceable |
getReference |
setReference
public void setReference(javax.naming.Reference reference)
- Sets the Reference instance. This method is called by the
deployment code to set the Reference that can be later
returned by the getReference method (as defined in the
javax.naming.Referenceable interface).
- Parameters:
reference
- A Reference instance- See Also:
Referenceable.getReference()