Package | Description |
---|---|
org.mockejb | |
org.mockejb.interceptor |
Modifier and Type | Method and Description |
---|---|
Pointcut |
BMPFinderHandler.getPointcut() |
Pointcut |
CMPFindByPrimaryKeyHandler.getPointcut() |
Pointcut |
EjbExceptionHandler.getPointcut()
Intercepts all EJB methods.
|
Modifier and Type | Class and Description |
---|---|
class |
ClassPatternPointcut
Tests if the class name of the provided method matches the regexp.
|
class |
ClassPointcut
Tests if the given class matches the class
provided to the constructor of ClassPointcut.
|
class |
MethodPatternPointcut
Tests if the string representation of the given method
matches the regexp.
|
class |
PointcutPair
Provides a way to create conditional expressions from pointcuts.
|
Modifier and Type | Method and Description |
---|---|
Pointcut |
Aspect.getPointcut() |
Modifier and Type | Method and Description |
---|---|
void |
AspectSystem.add(Pointcut pointcut,
Interceptor interceptor)
Creates the new aspect and adds it to the end of the list of aspects.
|
void |
AspectSystemImpl.add(Pointcut pointcut,
Interceptor interceptor) |
void |
AspectSystem.addFirst(Pointcut pointcut,
Interceptor interceptor)
Creates the new aspect from the given pointcut and the interceptor
and inserts it in the beginning of the list of aspects.
|
void |
AspectSystemImpl.addFirst(Pointcut pointcut,
Interceptor interceptor) |
static PointcutPair |
PointcutPair.and(Pointcut pointcut1,
Pointcut pointcut2)
Creates a new instance of PointcutPair.
|
static PointcutPair |
PointcutPair.or(Pointcut pointcut1,
Pointcut pointcut2)
Creates a new instance of PointcutPair.
|