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

com.fasterxml.jackson.jaxrs.cbor.CBOREndpointConfig Maven / Gradle / Ivy

Go to download

Functionality to handle CBOR encoded input/output for JAX-RS implementations (like Jersey and RESTeasy) using standard Jackson data binding.

There is a newer version: 2.18.1
Show newest version
package com.fasterxml.jackson.jaxrs.cbor;

import java.lang.annotation.Annotation;

import com.fasterxml.jackson.databind.*;
import com.fasterxml.jackson.databind.cfg.MapperConfig;
import com.fasterxml.jackson.jaxrs.cfg.EndpointConfigBase;

/**
 * Container class for figuring out annotation-based configuration
 * for JAX-RS end points.
 */
public class CBOREndpointConfig
    extends EndpointConfigBase
{
    /*
    /**********************************************************
    /* Construction
    /**********************************************************
     */

    protected CBOREndpointConfig(MapperConfig config) {
        super(config);
    }

    public static CBOREndpointConfig forReading(ObjectReader reader,
            Annotation[] annotations)
    {
        return new CBOREndpointConfig(reader.getConfig())
            .add(annotations, false)
            .initReader(reader)
        ;
    }

    public static CBOREndpointConfig forWriting(ObjectWriter writer,
            Annotation[] annotations)
    {
        return new CBOREndpointConfig(writer.getConfig())
            .add(annotations, true)
            .initWriter(writer)
        ;
    }

    // No need to override, fine as-is:
//    protected void addAnnotation(Class type, Annotation annotation, boolean forWriting)

    @Override
    public Object modifyBeforeWrite(Object value) {
        // nothing to add
        return value;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy