Package org.forgerock.openig.heap
Interface HeapletFactory
- 
public interface HeapletFactoryBuildsHeapletinstances. AHeapletFactorycan manage multiple Heaplet types. 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description HeapletnewInstance(Class<?> type)Returns a newHeapletinstance that know how to build the given type. 
 - 
 
- 
- 
Method Detail
- 
newInstance
Heaplet newInstance(Class<?> type)
Returns a newHeapletinstance that know how to build the given type.- Parameters:
 type- the type that the created heaplet must support.- Returns:
 - a new 
Heapletinstance that know how to build the given type, may returnnullif the given type is not supported by this factory. 
 
 - 
 
 -