Interface ManagedObjectPoolSource
-
- All Known Implementing Classes:
AbstractManagedObjectPoolSource
public interface ManagedObjectPoolSource
Sources aManagedObjectPool
.- Author:
- Daniel Sagenschneider
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ManagedObjectPoolSourceSpecification
getSpecification()
Obtains the specification for this.ManagedObjectPoolSourceMetaData
init(ManagedObjectPoolSourceContext context)
Initialises and configures theManagedObjectPoolSource
.
-
-
-
Method Detail
-
getSpecification
ManagedObjectPoolSourceSpecification getSpecification()
Obtains the specification for this.
This will be called before any other methods, therefore this method must be able to return the specification immediately after a default constructor instantiation.
- Returns:
- Specification of this.
-
init
ManagedObjectPoolSourceMetaData init(ManagedObjectPoolSourceContext context) throws java.lang.Exception
Initialises and configures theManagedObjectPoolSource
.- Parameters:
context
-ManagedObjectPoolSourceContext
.- Returns:
ManagedObjectPoolSourceMetaData
for theManagedObjectPool
.- Throws:
java.lang.Exception
- If fails to configure theManagedObjectPoolSource
.
-
-