io.github.nichetoolkit.rest.RestBodyAdvice Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rest-toolkit-core Show documentation
Show all versions of rest-toolkit-core Show documentation
Rest toolkit core project for Spring Boot
package io.github.nichetoolkit.rest;
import org.springframework.core.MethodParameter;
import org.springframework.http.MediaType;
import org.springframework.http.server.ServerHttpRequest;
import org.springframework.http.server.ServerHttpResponse;
/**
* RestBodyAdvice
* @author Cyan ([email protected])
* @version v1.0.0
*/
public interface RestBodyAdvice {
default boolean supports(MethodParameter params, Class clazz) {
return true;
}
default void doRestBodyHandle(Object resultBody, MethodParameter params, MediaType mediaType, Class clazz, ServerHttpRequest request, ServerHttpResponse response) {
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy