All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.codehaus.jackson.jaxrs.Annotations Maven / Gradle / Ivy

Go to download

Jax-RS provider for JSON content type, based on Jackson JSON processor's data binding functionality.

The newest version!
package org.codehaus.jackson.jaxrs;

/**
 * Enumeration that defines standard annotation sets available for configuring
 * data binding aspects.
 */
public enum Annotations {
    /**
     * Standard Jackson annotations, defined in Jackson core and mapper
     * packages
     */
    JACKSON,

    /**
     * Standard JAXB annotations, used in a way that approximates expected
     * definitions (since JAXB defines XML aspects, not all features map
     * well to JSON handling)
     */
    JAXB
    ;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy