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

org.terracotta.management.application.WebApplicationExceptionMapper Maven / Gradle / Ivy

Go to download

Ehcache is an open source, standards-based cache used to boost performance, offload the database and simplify scalability. Ehcache is robust, proven and full-featured and this has made it the most widely-used Java-based cache.

There is a newer version: 2.10.9.2
Show newest version
/*
 * All content copyright (c) 2003-2012 Terracotta, Inc., except as may otherwise be noted in a separate copyright
 * notice. All rights reserved.
 */
package org.terracotta.management.application;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import javax.ws.rs.WebApplicationException;
import javax.ws.rs.core.Response;
import javax.ws.rs.ext.ExceptionMapper;
import javax.ws.rs.ext.Provider;

/**
 * @author Ludovic Orban
 */
@Provider
public class WebApplicationExceptionMapper implements ExceptionMapper {

  private static final Logger LOG = LoggerFactory.getLogger(WebApplicationExceptionMapper.class);

  @Override
  public Response toResponse(WebApplicationException exception) {
    LOG.debug("WebApplicationExceptionMapper caught exception", exception);
    return Response.status(exception.getResponse().getStatus())
        .type((String)exception.getResponse().getMetadata().getFirst("Content-Type"))
        .entity(exception.getResponse().getEntity()).build();
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy