Uses of Class
org.codehaus.jackson.jaxrs.Annotations
-
Packages that use Annotations Package Description org.codehaus.jackson.jaxrs Jackson-based JAX-RS provider that can automatically serialize and deserialize resources for JSON content type (MediaType). -
-
Uses of Annotations in org.codehaus.jackson.jaxrs
Fields in org.codehaus.jackson.jaxrs declared as Annotations Modifier and Type Field Description protected Annotations[]MapperConfigurator. _defaultAnnotationsToUseAnnotations set to use by default; overridden by explicit call toMapperConfigurator.setAnnotationsToUse(org.codehaus.jackson.jaxrs.Annotations[])static Annotations[]JacksonJsonProvider. BASIC_ANNOTATIONSDefault annotation sets to use, if not explicitly defined during construction: only Jackson annotations are used for the base class.static Annotations[]JacksonJaxbJsonProvider. DEFAULT_ANNOTATIONSDefault annotation sets to use, if not explicitly defined during construction: use Jackson annotations if found; if not, use JAXB annotations as fallback.Methods in org.codehaus.jackson.jaxrs that return Annotations Modifier and Type Method Description static AnnotationsAnnotations. valueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static Annotations[]Annotations. values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.codehaus.jackson.jaxrs with parameters of type Annotations Modifier and Type Method Description protected AnnotationIntrospectorMapperConfigurator. _resolveIntrospector(Annotations ann)protected AnnotationIntrospectorMapperConfigurator. _resolveIntrospectors(Annotations[] annotationsToUse)protected voidMapperConfigurator. _setAnnotations(ObjectMapper mapper, Annotations[] annotationsToUse)voidJacksonJsonProvider. setAnnotationsToUse(Annotations[] annotationsToUse)Method for configuring which annotation sets to use (including none).voidMapperConfigurator. setAnnotationsToUse(Annotations[] annotationsToUse)Constructors in org.codehaus.jackson.jaxrs with parameters of type Annotations Constructor Description JacksonJaxbJsonProvider(Annotations... annotationsToUse)JacksonJaxbJsonProvider(ObjectMapper mapper, Annotations[] annotationsToUse)Constructor to use when a custom mapper (usually components like serializer/deserializer factories that have been configured) is to be used.JacksonJsonProvider(Annotations... annotationsToUse)JacksonJsonProvider(ObjectMapper mapper, Annotations[] annotationsToUse)Constructor to use when a custom mapper (usually components like serializer/deserializer factories that have been configured) is to be used.MapperConfigurator(ObjectMapper mapper, Annotations[] defAnnotations)
-