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

com.nike.riposte.server.error.handler.ErrorResponseBodySerializer Maven / Gradle / Ivy

There is a newer version: 0.20.0
Show newest version
package com.nike.riposte.server.error.handler;

/**
 * Interface for a class that knows how to serialize a {@link ErrorResponseBody} to a string.
 *
 * @author Nic Munroe
 */
@FunctionalInterface
public interface ErrorResponseBodySerializer {

    /**
     * @param errorResponseBody
     *     The error response body to serialize to a string.
     *
     * @return The given {@link ErrorResponseBody} after being serialized to a string.
     */
    String serializeErrorResponseBodyToString(ErrorResponseBody errorResponseBody);

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy