Annotation Type JacksonFeatures


  • @Target({ANNOTATION_TYPE,METHOD})
    @Retention(RUNTIME)
    @Deprecated
    public @interface JacksonFeatures
    Deprecated.
    Since 2.2, use shared com.fasterxml.jackson.jaxrs.annotation.JacksonFeatures instead
    Annotation that can be used enable and/or disable various features for ObjectReaders and ObjectWriters.
    • Optional Element Summary

      Optional Elements 
      Modifier and Type Optional Element Description
      com.fasterxml.jackson.databind.DeserializationFeature[] deserializationDisable
      Deprecated.
      Deserialization features to disable.
      com.fasterxml.jackson.databind.DeserializationFeature[] deserializationEnable
      Deprecated.
      Deserialization features to enable.
      com.fasterxml.jackson.databind.SerializationFeature[] serializationDisable
      Deprecated.
      Serialization features to disable.
      com.fasterxml.jackson.databind.SerializationFeature[] serializationEnable
      Deprecated.
      Serialization features to enable.
    • Element Detail

      • deserializationEnable

        com.fasterxml.jackson.databind.DeserializationFeature[] deserializationEnable
        Deprecated.
        Deserialization features to enable.
        Default:
        {}
      • deserializationDisable

        com.fasterxml.jackson.databind.DeserializationFeature[] deserializationDisable
        Deprecated.
        Deserialization features to disable.
        Default:
        {}
      • serializationEnable

        com.fasterxml.jackson.databind.SerializationFeature[] serializationEnable
        Deprecated.
        Serialization features to enable.
        Default:
        {}
      • serializationDisable

        com.fasterxml.jackson.databind.SerializationFeature[] serializationDisable
        Deprecated.
        Serialization features to disable.
        Default:
        {}