BeanFactory<ID> |
A lookup factory supporting type and ID lookup.
|
BeanLookupFactory<ID> |
The BeanLookupFactory defines the functionality which must be
provided in order to represent a factory for object creation of objects
identified by an ID String and of the expected type (in contrast to
the TypeFactory and the LookupFactory which create instances
of a predefined type specified with a generic argument).
|
CollectionFactory<C extends java.util.Collection<?>> |
The CollectionFactory defines the functionality which must be
provided in order to represent a factory for object creation of *ALL* objects
being of a requested type (in contrast to the TypeFactory and the
LookupFactory which create instances of a predefined type specified
with a generic argument).
|
ContextLookupFactory<T,ID,CTX> |
The ContextLookupFactory defines the functionality which must be
provided in order to represent a factory for object creation of objects
identified by an ID String and of a predefined type specified with a
generic argument (in contrast to the BeanLookupFactory , which creates
instances of an expected type).
|
ContextTypeFactory<T,CTX> |
The ContextTypeFactory defines the functionality which must be
provided in order to represent a factory for object creation depending on
some provided context and of a predefined type specified with a generic
argument (in contrast to the BeanLookupFactory , which creates
instances of an expected type).
|
LookupFactory<T,ID> |
The LookupFactory defines the functionality which must be provided in
order to represent a factory for object creation of objects identified by an
ID String and of a predefined type specified with a generic argument
(in contrast to the BeanLookupFactory , which creates instances of an
expected type).
|
TypeFactory<T> |
The TypeFactory defines the functionality which must be provided in
order to represent a factory for object creation of a predefined type
specified with a generic argument (in contrast to the
BeanLookupFactory , which creates instances of an expected type).
|
TypeLookupFactory |
The TypeLookupFactory defines the functionality which must be
provided in order to represent a factory for object creation of *ALL* objects
being of a requested type (in contrast to the TypeFactory and the
LookupFactory which create instances of a predefined type specified
with a generic argument).
|