|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.apache.commons.discovery.tools.SPInterface<T>
T
- The SPI typepublic class SPInterface<T>
Represents a Service Programming Interface (spi). - SPI's name - SPI's (provider) class - SPI's (alternate) override property name In addition, while there are many cases where this is NOT usefull, for those in which it is: - expected constructor argument types and parameters values.
Constructor Summary | |
---|---|
SPInterface(Class<T> provider)
Construct object representing Class provider . |
|
SPInterface(Class<T> provider,
Class<?>[] constructorParamClasses,
Object[] constructorParams)
Construct object representing Class provider . |
|
SPInterface(Class<T> spi,
String propertyName)
Construct object representing Class provider . |
|
SPInterface(Class<T> spi,
String propertyName,
Class<?>[] constructorParamClasses,
Object[] constructorParams)
Construct object representing Class provider . |
Method Summary | ||
---|---|---|
String |
getPropertyName()
Returns the property name to be used for finding the name of the SPI implementation class. |
|
Class<T> |
getSPClass()
Returns the SPI class. |
|
String |
getSPName()
Returns the SPI class name. |
|
|
newInstance(Class<S> impl)
Creates a new instance of the given SPI class. |
|
static
|
newSPInterface(Class<T> provider)
Construct object representing Class provider . |
|
static
|
newSPInterface(Class<T> provider,
Class<?>[] constructorParamClasses,
Object[] constructorParams)
Construct object representing Class provider . |
|
static
|
newSPInterface(Class<T> provider,
String propertyName)
Construct object representing Class provider . |
|
static
|
newSPInterface(Class<T> provider,
String propertyName,
Class<?>[] constructorParamClasses,
Object[] constructorParams)
Construct object representing Class provider . |
|
|
verifyAncestory(Class<S> impl)
Verifies the given SPI implementation is a SPI specialization. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public SPInterface(Class<T> provider)
provider
.
provider
- The SPI classpublic SPInterface(Class<T> spi, String propertyName)
provider
.
spi
- The SPI classpropertyName
- when looking for the name of a class implementing
the provider class, a discovery strategy may involve looking for
(system or other) properties having either the name of the class
(provider) or the propertyName
.public SPInterface(Class<T> provider, Class<?>[] constructorParamClasses, Object[] constructorParams)
provider
.
provider
- The SPI classconstructorParamClasses
- classes representing the
constructor argument types.constructorParams
- objects representing the
constructor arguments.public SPInterface(Class<T> spi, String propertyName, Class<?>[] constructorParamClasses, Object[] constructorParams)
provider
.
spi
- The SPI classpropertyName
- when looking for the name of a class implementing
the provider class, a discovery strategy may involve looking for
(system or other) properties having either the name of the class
(provider) or the propertyName
.constructorParamClasses
- classes representing the
constructor argument types.constructorParams
- objects representing the
constructor arguments.Method Detail |
---|
public static <T> SPInterface<T> newSPInterface(Class<T> provider)
provider
.
T
- The SPI typeprovider
- The SPI class
provider
public static <T> SPInterface<T> newSPInterface(Class<T> provider, String propertyName)
provider
.
T
- The SPI typeprovider
- The SPI classpropertyName
- when looking for the name of a class implementing
the provider class, a discovery strategy may involve looking for
(system or other) properties having either the name of the class
(provider) or the propertyName
.
provider
public static <T> SPInterface<T> newSPInterface(Class<T> provider, Class<?>[] constructorParamClasses, Object[] constructorParams)
provider
.
T
- The SPI typeprovider
- The SPI classconstructorParamClasses
- classes representing the
constructor argument typesconstructorParams
- objects representing the
constructor arguments
provider
public static <T> SPInterface<T> newSPInterface(Class<T> provider, String propertyName, Class<?>[] constructorParamClasses, Object[] constructorParams)
provider
.
T
- The SPI typeprovider
- The SPI classpropertyName
- when looking for the name of a class implementing
the provider class, a discovery strategy may involve looking for
(system or other) properties having either the name of the class
(provider) or the propertyName
.constructorParamClasses
- classes representing the
constructor argument typesconstructorParams
- objects representing the
constructor arguments
provider
public String getSPName()
public Class<T> getSPClass()
public String getPropertyName()
public <S extends T> S newInstance(Class<S> impl) throws DiscoveryException, InstantiationException, IllegalAccessException, NoSuchMethodException, InvocationTargetException
S
- Any type extends Timpl
- The SPI class has to be instantiated
DiscoveryException
- if the class implementing
the SPI cannot be found, cannot be loaded and
instantiated, or if the resulting class does not implement
(or extend) the SPI
InstantiationException
- see Class.newInstance()
IllegalAccessException
- see Class.newInstance()
NoSuchMethodException
- see Class.newInstance()
InvocationTargetException
- see Class.newInstance()
public <S extends T> void verifyAncestory(Class<S> impl)
S
- Any type extends Timpl
- The SPI instantance
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |