Class AbstractMethodAnnotationScanner<T>
- java.lang.Object
-
- org.eclipse.jetty.websocket.common.events.annotated.AbstractMethodAnnotationScanner<T>
-
- Type Parameters:
T
- The type of metadata
- Direct Known Subclasses:
JettyAnnotatedScanner
@Deprecated(since="2021-05-27") public abstract class AbstractMethodAnnotationScanner<T> extends java.lang.Object
Deprecated.The Eclipse Jetty and Apache Felix Http Jetty packages are no longer supported.Basic scanner for Annotated Methods
-
-
Constructor Summary
Constructors Constructor Description AbstractMethodAnnotationScanner()
Deprecated.
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Deprecated Methods Modifier and Type Method Description boolean
isAnnotation(java.lang.annotation.Annotation annotation, java.lang.Class<? extends java.lang.annotation.Annotation> annotationClass)
Deprecated.boolean
isSameParameters(java.lang.Class<?>[] actual, java.lang.Class<?>[] params)
Deprecated.abstract void
onMethodAnnotation(T metadata, java.lang.Class<?> pojo, java.lang.reflect.Method method, java.lang.annotation.Annotation annotation)
Deprecated.void
scanMethodAnnotations(T metadata, java.lang.Class<?> pojo)
Deprecated.
-
-
-
Method Detail
-
isAnnotation
public boolean isAnnotation(java.lang.annotation.Annotation annotation, java.lang.Class<? extends java.lang.annotation.Annotation> annotationClass)
Deprecated.
-
isSameParameters
public boolean isSameParameters(java.lang.Class<?>[] actual, java.lang.Class<?>[] params)
Deprecated.
-
onMethodAnnotation
public abstract void onMethodAnnotation(T metadata, java.lang.Class<?> pojo, java.lang.reflect.Method method, java.lang.annotation.Annotation annotation)
Deprecated.
-
scanMethodAnnotations
public void scanMethodAnnotations(T metadata, java.lang.Class<?> pojo)
Deprecated.
-
-