|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.apache.tapestry5.ioc.internal.ObjectLocatorImpl
public class ObjectLocatorImpl
Base service locator class used when only the module is known (i.e., when instantiating a module class).
Constructor Summary | |
---|---|
ObjectLocatorImpl(InternalRegistry registry,
Module module)
|
Method Summary | ||
---|---|---|
|
autobuild(Class<T> clazz)
Autobuilds a class by finding the public constructor with the most parameters. |
|
|
autobuild(String description,
Class<T> clazz)
Preferred version of ObjectLocator.autobuild(Class) that tracks the operation using
OperationTracker.invoke(String, Invokable) . |
|
|
getObject(Class<T> objectType,
AnnotationProvider annotationProvider)
Obtains an object indirectly, using the MasterObjectProvider service. |
|
|
getService(Class<T> serviceInterface)
Locates a service given a service interface and (optionally) some marker annotation types. |
|
|
getService(Class<T> serviceInterface,
Class<? extends Annotation>... markerTypes)
Locates a service given a service interface and (optionally) some marker annotation types. |
|
|
getService(String serviceId,
Class<T> serviceInterface)
Obtains a service via its unique service id. |
|
|
proxy(Class<T> interfaceClass,
Class<? extends T> implementationClass)
Creates a proxy. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public ObjectLocatorImpl(InternalRegistry registry, Module module)
Method Detail |
---|
public <T> T getService(String serviceId, Class<T> serviceInterface)
ObjectLocator
getService
in interface ObjectLocator
serviceId
- unique Service id used to locate the service object (may contain symbols,
which
will be expanded), case is ignoredserviceInterface
- the interface implemented by the service (or an interface extended by the service
interface)
public <T> T getService(Class<T> serviceInterface)
ObjectLocator
getService
in interface ObjectLocator
serviceInterface
- the interface the service implements
Marker
public <T> T getService(Class<T> serviceInterface, Class<? extends Annotation>... markerTypes)
ObjectLocator
getService
in interface ObjectLocator
serviceInterface
- the interface the service implementsmarkerTypes
- Markers used to select a specific service that implements the interface
Marker
public <T> T getObject(Class<T> objectType, AnnotationProvider annotationProvider)
ObjectLocator
MasterObjectProvider
service.
getObject
in interface ObjectLocator
objectType
- the type of object to be returnedannotationProvider
- provides access to annotations on the field or parameter for which a value is to
be
obtained, which may be utilized in selecting an appropriate object, use
null when annotations are not available (in which case, selection
will
be based only on the object type)
ObjectProvider
public <T> T autobuild(Class<T> clazz)
ObjectLocator
Inject
annotation. There are two cases: constructing a service implementation, and constructing
an arbitrary object. In the former case, many service resources are also available for injection, not
just dependencies or objects provided via
MasterObjectProvider.provide(Class, AnnotationProvider, ObjectLocator, boolean)
.
autobuild
in interface ObjectLocator
clazz
- the type of object to instantiate
MasterObjectProvider
public <T> T autobuild(String description, Class<T> clazz)
ObjectLocator
ObjectLocator.autobuild(Class)
that tracks the operation using
OperationTracker.invoke(String, Invokable)
.
autobuild
in interface ObjectLocator
description
- description used with OperationTracker
clazz
- the type of object to instantiate
MasterObjectProvider
public <T> T proxy(Class<T> interfaceClass, Class<? extends T> implementationClass)
ObjectLocator
ObjectLocator.autobuild(Class)
until
just-in-time (that is, first method invocation). In a limited number of cases, it is necessary to use such a
proxy to prevent service construction cycles, particularly when contributing (directly or indirectly) to the
MasterObjectProvider
(which is itself at the heart
of autobuilding).
If the class file for the class is a file on the file system (not a file packaged in a JAR), then the proxy will
autoreload: changing the class file will result in the new class being reloaded and re-instantiated
(with dependencies).
proxy
in interface ObjectLocator
interfaceClass
- the interface implemented by the proxyimplementationClass
- a concrete class that implements the interface
ObjectLocator.autobuild(Class)
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |