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

io.dropwizard.jersey.optional.EmptyOptionalNoContentExceptionMapper Maven / Gradle / Ivy

The newest version!
package io.dropwizard.jersey.optional;

import jakarta.ws.rs.core.Response;
import jakarta.ws.rs.ext.ExceptionMapper;

import java.util.Optional;

/**
 * Returns a 204 for {@link Optional#empty()}
 * {@link EmptyOptionalExceptionMapper} returns a 404 for {@link Optional#empty()}
 *
 * @since 2.0
 */
public class EmptyOptionalNoContentExceptionMapper implements ExceptionMapper {
    @Override
    public Response toResponse(EmptyOptionalException exception) {
        return Response.noContent().build();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy