Interface ManagedObjectPoolSource
-
- All Known Implementing Classes:
AbstractManagedObjectPoolSource
public interface ManagedObjectPoolSourceSources aManagedObjectPool.- Author:
- Daniel Sagenschneider
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ManagedObjectPoolSourceSpecificationgetSpecification()Obtains the specification for this.ManagedObjectPoolSourceMetaDatainit(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:
ManagedObjectPoolSourceMetaDatafor theManagedObjectPool.- Throws:
java.lang.Exception- If fails to configure theManagedObjectPoolSource.
-
-