Interface ObjectCreatorSource
- 
- All Known Implementing Classes:
 ReloadableObjectCreatorSource
public interface ObjectCreatorSource
An object which can, when passed aServiceBuilderResources, create a correspondingObjectCreator. A secondary responsibility is to provide a description of the creator, which is usually based on the name of the method or constructor to be invoked, and is ultimately used in some debugging or error output. 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ObjectCreatorconstructCreator(ServiceBuilderResources resources)Provides an ObjectCreator that can be used to ultimately instantiate the core service implementation.StringgetDescription()Returns a description of the method or constructor that creates the service. 
 - 
 
- 
- 
Method Detail
- 
constructCreator
ObjectCreator constructCreator(ServiceBuilderResources resources)
Provides an ObjectCreator that can be used to ultimately instantiate the core service implementation. 
- 
getDescription
String getDescription()
Returns a description of the method or constructor that creates the service. 
 - 
 
 -