![JAR search and dependency download from the Maven repository](/logo.png)
com.nike.riposte.server.error.handler.ErrorResponseBodySerializer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of riposte-spi Show documentation
Show all versions of riposte-spi Show documentation
Riposte module riposte-spi
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