Class DefaultClassHolder<T>
java.lang.Object
org.apache.commons.discovery.tools.DefaultClassHolder<T>
Holder for a default class.
Class may be specified by name (String) or class (Class).
Using the holder complicates the users job, but minimized # of API's.
-
Constructor Summary
ConstructorsModifierConstructorDescription<S extends T>DefaultClassHolder(Class<S> defaultClass) Creates a new holder implementation given the input SPI implementation/extension class.DefaultClassHolder(String defaultName) Creates a new holder implementation given the input SPI implementation/extension class name. -
Method Summary
Modifier and TypeMethodDescriptiongetDefaultClass(SPInterface<T> spi, ClassLoaders loaders) Returns the default class, loading it if necessary and verifying that it implements the SPI (this forces the check, no way out..).Returns the hold class name.
-
Constructor Details
-
DefaultClassHolder
Creates a new holder implementation given the input SPI implementation/extension class.- Type Parameters:
S- Any type extends the SPI type- Parameters:
defaultClass- The hold class
-
DefaultClassHolder
Creates a new holder implementation given the input SPI implementation/extension class name.- Parameters:
defaultName- The hold class name
-
-
Method Details
-
getDefaultClass
Returns the default class, loading it if necessary and verifying that it implements the SPI (this forces the check, no way out..).- Type Parameters:
S- Any type extends the SPI type- Parameters:
spi- non-null SPIloaders- Used only if class needs to be loaded.- Returns:
- The default Class.
-
getDefaultName
-