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

org.jboss.resteasy.client.core.ClientInterceptorRepository Maven / Gradle / Ivy

There is a newer version: 1.1.1
Show newest version
package org.jboss.resteasy.client.core;

import org.jboss.resteasy.spi.interception.ClientExecutionInterceptor;

import javax.ws.rs.ext.ReaderInterceptor;
import javax.ws.rs.ext.WriterInterceptor;
import java.util.LinkedList;

/**
 * @author Solomon Duskis
 * @version $Revision: 1 $
 */
public interface ClientInterceptorRepository
{

   LinkedList getReaderInterceptorList();

   LinkedList getWriterInterceptorList();

   LinkedList getExecutionInterceptorList();

   void registerInterceptor(Object interceptor);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy