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

com.scarabsoft.endeavour.Transformation Maven / Gradle / Ivy

The newest version!
package com.scarabsoft.endeavour;

import com.scarabsoft.endeavour.exception.TransformationException;

import javax.servlet.http.HttpServletResponse;

public interface Transformation {

    void ok(OUTPUT object, Response response) throws TransformationException;

    void created(OUTPUT object, Response response) throws TransformationException;

    default void noContent(Response response) throws TransformationException {
        response.status(HttpServletResponse.SC_NO_CONTENT);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy