org.terracotta.management.application.WebApplicationExceptionMapper Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ehcache Show documentation
Show all versions of ehcache Show documentation
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.
/*
* 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();
}
}