com.vaadin.flow.server.startup.
Class AnnotationValidator
- java.lang.Object
-
- com.vaadin.flow.server.startup.AbstractAnnotationValidator
-
- com.vaadin.flow.server.startup.AnnotationValidator
-
All Implemented Interfaces:
public class AnnotationValidator extends AbstractAnnotationValidator implements ClassLoaderAwareServletContainerInitializer
Validation class that is run during servlet container initialization which checks that specific annotations are not configured wrong.
For internal use only. May be renamed or removed in a future release.
Since:
1.0
See Also:
-
-
Field Summary
-
Fields inherited from class com.vaadin.flow.server.startup.AbstractAnnotationValidator
ERROR_MESSAGE_BEGINNING, MIDDLE_ROUTER_LAYOUT, NON_PARENT, NON_PARENT_ALIAS, NON_ROUTER_LAYOUT
-
-
Constructor Summary
Constructors Constructor and Description AnnotationValidator()
-
Method Summary
All Methods Modifier and Type Method and Description List<Class<?>>
getAnnotations()
Gets the annotations that are subject to validate.
void
process(Set<Class<?>> classSet, ServletContext servletContext)
Implement this method instead of
ClassLoaderAwareServletContainerInitializer.onStartup(Set, ServletContext)
to handle classes accessible by different classloaders.-
Methods inherited from class com.vaadin.flow.server.startup.AbstractAnnotationValidator
getClassAnnotations, getErrorHint, handleNonRouterLayout, validateClasses
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface com.vaadin.flow.server.startup.ClassLoaderAwareServletContainerInitializer
onStartup, requiresLookup
-
-
-
-
Method Detail
-
process
public void process(Set<Class<?>> classSet, ServletContext servletContext) throws ServletException
Description copied from interface:
ClassLoaderAwareServletContainerInitializer
Implement this method instead of
ClassLoaderAwareServletContainerInitializer.onStartup(Set, ServletContext)
to handle classes accessible by different classloaders.Specified by:
process
in interfaceClassLoaderAwareServletContainerInitializer
Parameters:
classSet
- the Set of application classes that extend, implement, or have been annotated with the class types specified by theHandlesTypes
annotation, or null if there are no matches, or this ServletContainerInitializer has not been annotated with HandlesTypesservletContext
- the ServletContext of the web application that is being started and in which the classes contained in c were foundThrows:
ServletException
- if an error has occurredSee Also:
ClassLoaderAwareServletContainerInitializer.onStartup(Set, ServletContext)
-
getAnnotations
public List<Class<?>> getAnnotations()
Description copied from class:
AbstractAnnotationValidator
Gets the annotations that are subject to validate.
Specified by:
getAnnotations
in classAbstractAnnotationValidator
Returns:
a list of target annotations
-
-