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

com.quorum.tessera.api.exception.AutoDiscoveryDisabledExceptionMapper Maven / Gradle / Ivy

package com.quorum.tessera.api.exception;

import com.quorum.tessera.partyinfo.AutoDiscoveryDisabledException;
import jakarta.ws.rs.core.MediaType;
import jakarta.ws.rs.core.Response;
import jakarta.ws.rs.ext.ExceptionMapper;
import jakarta.ws.rs.ext.Provider;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

@Provider
public class AutoDiscoveryDisabledExceptionMapper
    implements ExceptionMapper {

  private static final Logger LOGGER =
      LoggerFactory.getLogger(AutoDiscoveryDisabledExceptionMapper.class);

  @Override
  public Response toResponse(final AutoDiscoveryDisabledException exception) {
    LOGGER.debug(null, exception);

    return Response.status(Response.Status.FORBIDDEN)
        .entity(exception.getMessage())
        .type(MediaType.TEXT_PLAIN)
        .build();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy