Package com.sun.enterprise.connectors
Interface ConnectorRuntimeExtension
-
- All Known Implementing Classes:
JdbcRuntimeExtension
@Contract public interface ConnectorRuntimeExtension- Author:
- Shalini M
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Collection<Resource>getAllSystemRAResourcesAndPools()Return the collection of system resources and pools.DeferredResourceConfiggetDeferredResourceConfig(Object resource, Object pool, String resType, String raName)PoolInfogetPoolNameFromResourceJndiName(ResourceInfo resourceInfo)StringgetResourceType(ConfigBeanProxy cb)booleanisConnectionPoolReferredInServerInstance(PoolInfo poolInfo)ObjectlookupDataSourceInDAS(ResourceInfo resourceInfo)voidregisterDataSourceDefinitions(Application application)voidunRegisterDataSourceDefinitions(Application application)
-
-
-
Method Detail
-
getAllSystemRAResourcesAndPools
Collection<Resource> getAllSystemRAResourcesAndPools()
Return the collection of system resources and pools.- Returns:
- collection of system resources and pools.
-
registerDataSourceDefinitions
void registerDataSourceDefinitions(Application application)
-
unRegisterDataSourceDefinitions
void unRegisterDataSourceDefinitions(Application application)
-
lookupDataSourceInDAS
Object lookupDataSourceInDAS(ResourceInfo resourceInfo) throws ConnectorRuntimeException
- Throws:
ConnectorRuntimeException
-
getDeferredResourceConfig
DeferredResourceConfig getDeferredResourceConfig(Object resource, Object pool, String resType, String raName) throws ConnectorRuntimeException
- Throws:
ConnectorRuntimeException
-
getResourceType
String getResourceType(ConfigBeanProxy cb)
-
isConnectionPoolReferredInServerInstance
boolean isConnectionPoolReferredInServerInstance(PoolInfo poolInfo)
-
getPoolNameFromResourceJndiName
PoolInfo getPoolNameFromResourceJndiName(ResourceInfo resourceInfo)
-
-