Interface AnnotationMappingConfigurationContext
-
public interface AnnotationMappingConfigurationContext
A context to configure annotation mapping.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AnnotationMappingConfigurationContext
add(Class<?> annotatedType)
AnnotationMappingConfigurationContext
add(Set<Class<?>> annotatedTypes)
-
-
-
Method Detail
-
add
AnnotationMappingConfigurationContext add(Class<?> annotatedType)
- Parameters:
annotatedType
- A type to scan for annotations.- Returns:
this
, for method chaining.
-
add
AnnotationMappingConfigurationContext add(Set<Class<?>> annotatedTypes)
- Parameters:
annotatedTypes
- A set of types to scan for annotations.- Returns:
this
, for method chaining.
-
-