public final class InterceptorBinding extends java.lang.Object implements Element
bindInterceptor()
statements:
bindInterceptor(Matchers.subclassesOf(MyAction.class), Matchers.annotatedWith(Transactional.class), new MyTransactionInterceptor());or from an injectable type listener using
TypeEncounter.bindInterceptor()
.Modifier and Type | Method and Description |
---|---|
<T> T |
acceptVisitor(ElementVisitor<T> visitor)
Accepts an element visitor.
|
void |
applyTo(Binder binder)
Writes this module element to the given binder (optional operation).
|
Matcher<? super java.lang.Class<?>> |
getClassMatcher() |
java.util.List<org.aopalliance.intercept.MethodInterceptor> |
getInterceptors() |
Matcher<? super java.lang.reflect.Method> |
getMethodMatcher() |
java.lang.Object |
getSource()
Returns an arbitrary object containing information about the "place" where this element was
configured.
|
public java.lang.Object getSource()
Element
Tools might specially handle types they know about; StackTraceElement
is a good
example. Tools should simply call toString()
on the source object if the type is
unfamiliar.
public Matcher<? super java.lang.Class<?>> getClassMatcher()
public Matcher<? super java.lang.reflect.Method> getMethodMatcher()
public java.util.List<org.aopalliance.intercept.MethodInterceptor> getInterceptors()
public <T> T acceptVisitor(ElementVisitor<T> visitor)
Element
acceptVisitor
in interface Element
visitor
- to call back on