org.apache.tapestry5.ioc.internal.services
Class AspectDecoratorImpl
java.lang.Object
org.apache.tapestry5.ioc.internal.services.AspectDecoratorImpl
- All Implemented Interfaces:
- AspectDecorator
@PreventServiceDecoration
public class AspectDecoratorImpl
- extends Object
- implements AspectDecorator
Method Summary |
|
build(Class<T> serviceInterface,
T delegate,
MethodAdvice advice,
String description)
Intercepts method invocations on the delegate and passes them through the provided aspect. |
|
createBuilder(Class<T> serviceInterface,
T delegate,
AnnotationAccess annotationAccess,
String description)
Creates a builder that can be used to create the interceptor. |
|
createBuilder(Class<T> serviceInterface,
T delegate,
String description)
Creates a builder that can be used to create the interceptor. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
AspectDecoratorImpl
public AspectDecoratorImpl(@Builtin
PlasticProxyFactory proxyFactory)
build
public <T> T build(Class<T> serviceInterface,
T delegate,
MethodAdvice advice,
String description)
- Description copied from interface:
AspectDecorator
- Intercepts method invocations on the delegate and passes them through the provided aspect. Note that the advice
must be thread-safe.
- Specified by:
build
in interface AspectDecorator
- Parameters:
serviceInterface
- defines the interface of the interceptor and delegatedelegate
- the object on which methods will be invokedadvice
- intercepts the method invocations on the delegatedescription
- used as the toString() of the returned interceptor, unless toString() is part of the
service interface
- Returns:
- the interceptor, wrapping the delegate with all the advice
createBuilder
public <T> AspectInterceptorBuilder<T> createBuilder(Class<T> serviceInterface,
T delegate,
String description)
- Description copied from interface:
AspectDecorator
- Creates a builder that can be used to create the interceptor. This is used when only some of the methods need to
be advised, or when different methods need to receive different advice, or when multiple advice is to be
applied.
- Specified by:
createBuilder
in interface AspectDecorator
- Parameters:
serviceInterface
- defines the interface of the interceptor and the delegatedelegate
- the object on which methods will be invokesdescription
- used as the toString() of the interceptor unless toString() is part of the service
interface
- Returns:
- a builder that can be used to generate the final interceptor
createBuilder
public <T> AspectInterceptorBuilder<T> createBuilder(Class<T> serviceInterface,
T delegate,
AnnotationAccess annotationAccess,
String description)
- Description copied from interface:
AspectDecorator
- Creates a builder that can be used to create the interceptor. This is used when only some of the methods need to
be advised, or when different methods need to receive different advice, or when multiple advice is to be
applied.
- Specified by:
createBuilder
in interface AspectDecorator
- Parameters:
serviceInterface
- defines the interface of the interceptor and the delegatedelegate
- the object on which methods will be invokesannotationAccess
- provides access to combined annotations of the underlying service
and service interfacedescription
- used as the toString() of the interceptor unless toString() is part of the service
interface
- Returns:
- a builder that can be used to generate the final interceptor
Copyright © 2003-2012 The Apache Software Foundation.