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

se.fortnox.reactivewizard.jaxrs.response.NoContentTransformer Maven / Gradle / Ivy

There is a newer version: 24.6.0
Show newest version
package se.fortnox.reactivewizard.jaxrs.response;

import se.fortnox.reactivewizard.jaxrs.JaxRsResource;

/**
 * Kept only to avoid breaking changes. Logic moved to JaxRsResult.
 */
public class NoContentTransformer implements ResultTransformerFactory {
    @Override
    public  ResultTransformer create(JaxRsResource resource) {
        return (result, args) -> result;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy