com.fasterxml.jackson.jakarta.rs.yaml.JacksonXmlBindYAMLProvider Maven / Gradle / Ivy
Show all versions of jackson-jakarta-rs-yaml-provider Show documentation
package com.fasterxml.jackson.jakarta.rs.yaml;
import com.fasterxml.jackson.dataformat.yaml.YAMLMapper;
import com.fasterxml.jackson.jakarta.rs.cfg.Annotations;
import jakarta.ws.rs.Consumes;
import jakarta.ws.rs.Produces;
import jakarta.ws.rs.core.MediaType;
import jakarta.ws.rs.ext.Provider;
/**
* JSON content type provider automatically configured to use both Jackson
* and Jakarta XmlBind annotations (in that order of priority). Otherwise functionally
* same as {@link JacksonYAMLProvider}.
*
* Typical usage pattern is to just instantiate instance of this
* provider for Jakarta-RS and use as is: this will use both Jackson and
* Jakarta XmlBind annotations (with Jackson annotations having priority).
*
* Note: class annotations are duplicated from super class, since it
* is not clear whether Jakarta-RS implementations are required to
* check settings of super-classes. It is important to keep annotations
* in sync if changed.
*/
@Provider
@Consumes(MediaType.WILDCARD)
// As per https://www.rfc-editor.org/rfc/rfc9512.html
@Produces({ "application/yaml", MediaType.WILDCARD })
public class JacksonXmlBindYAMLProvider extends JacksonYAMLProvider
{
/**
* Default annotation sets to use, if not explicitly defined during
* construction: use Jackson annotations if found; if not, use
* XmlBind annotations as fallback.
*/
public final static Annotations[] DEFAULT_ANNOTATIONS = {
Annotations.JACKSON, Annotations.JAKARTA_XML_BIND
};
/**
* Default constructor, usually used when provider is automatically
* configured to be used with Jakarta-RS implementation.
*/
public JacksonXmlBindYAMLProvider()
{
this(null, DEFAULT_ANNOTATIONS);
}
/**
* @param annotationsToUse Annotation set(s) to use for configuring
* data binding
*/
public JacksonXmlBindYAMLProvider(Annotations... annotationsToUse)
{
this(null, annotationsToUse);
}
/**
* Constructor to use when a custom mapper (usually components
* like serializer/deserializer factories that have been configured)
* is to be used.
*/
public JacksonXmlBindYAMLProvider(YAMLMapper mapper, Annotations[] annotationsToUse)
{
super(mapper, annotationsToUse);
}
}