org.jboss.resteasy.spi.interception.AcceptedByMethod Maven / Gradle / Ivy
package org.jboss.resteasy.spi.interception;
import java.lang.reflect.Method;
/**
* Implemented interface that can trigger the addition of an interceptor
*
* @author Bill Burke
* @version $Revision: 1 $
*
* @deprecated The Resteasy interceptor facility introduced in release 2.x
* is replaced by the JAX-RS 2.0 compliant interceptor facility in release 3.0.x.
*
* @see jaxrs-api
*/
@Deprecated
public interface AcceptedByMethod
{
boolean accept(Class declaring, Method method);
}