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

no.entur.logging.cloud.logbook.ondemand.EmptyHttpMessageBodyWriter Maven / Gradle / Ivy

There is a newer version: 3.0.1
Show newest version
package no.entur.logging.cloud.logbook.ondemand;

import com.fasterxml.jackson.core.JsonGenerator;

import java.io.IOException;

public class EmptyHttpMessageBodyWriter implements HttpMessageBodyWriter {

    public static final EmptyHttpMessageBodyWriter INSTANCE = new EmptyHttpMessageBodyWriter();

    @Override
    public void prepareResult() {
        // do nothing
    }

    @Override
    public void writeBody(JsonGenerator generator) throws IOException {
        // do nothing
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy