| |
|
| java.lang.Object org.springframework.aop.support.annotation.AnnotationMatchingPointcut
AnnotationMatchingPointcut | public AnnotationMatchingPointcut(Class<? extends Annotation> classAnnotationType)(Code) | | Create a new AnnotationMatchingPointcut for the given annotation type.
Parameters: classAnnotationType - the annotation type to look for at the class level |
AnnotationMatchingPointcut | public AnnotationMatchingPointcut(Class<? extends Annotation> classAnnotationType, Class<? extends Annotation> methodAnnotationType)(Code) | | Create a new AnnotationMatchingPointcut for the given annotation type.
Parameters: classAnnotationType - the annotation type to look for at the class level(can be null ) Parameters: methodAnnotationType - the annotation type to look for at the method level(can be null ) |
forClassAnnotation | public static AnnotationMatchingPointcut forClassAnnotation(Class<? extends Annotation> annotationType)(Code) | | Factory method for an AnnotationMatchingPointcut that matches
for the specified annotation at the class level.
Parameters: annotationType - the annotation type to look for at the class level the corresponding AnnotationMatchingPointcut |
forMethodAnnotation | public static AnnotationMatchingPointcut forMethodAnnotation(Class<? extends Annotation> annotationType)(Code) | | Factory method for an AnnotationMatchingPointcut that matches
for the specified annotation at the method level.
Parameters: annotationType - the annotation type to look for at the method level the corresponding AnnotationMatchingPointcut |
|
|
|