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

net.optionfactory.spring.problems.web.OmitDetails Maven / Gradle / Ivy

There is a newer version: 21.2
Show newest version
package net.optionfactory.spring.problems.web;

import jakarta.servlet.http.HttpServletRequest;
import jakarta.servlet.http.HttpServletResponse;
import net.optionfactory.spring.problems.Problem;
import org.springframework.web.method.HandlerMethod;

public class OmitDetails implements ProblemTransformer {

    @Override
    public Problem transform(Problem problem, HttpServletRequest request, HttpServletResponse response, HandlerMethod handler, Exception ex) {
        problem.details = null;
        return problem;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy