Author: gmazza
Date: Sat Mar 15 10:37:10 2008
New Revision: 637446
URL: http://svn.apache.org/viewvc?rev=637446&view=rev
Log:
JavaDoc info added.
Modified:
incubator/cxf/trunk/api/src/main/java/org/apache/cxf/interceptor/InterceptorProvider.java
Modified:
incubator/cxf/trunk/api/src/main/java/org/apache/cxf/interceptor/InterceptorProvider.java
URL:
http://svn.apache.org/viewvc/incubator/cxf/trunk/api/src/main/java/org/apache/cxf/interceptor/InterceptorProvider.java?rev=637446&r1=637445&r2=637446&view=diff
==============================================================================
---
incubator/cxf/trunk/api/src/main/java/org/apache/cxf/interceptor/InterceptorProvider.java
(original)
+++
incubator/cxf/trunk/api/src/main/java/org/apache/cxf/interceptor/InterceptorProvider.java
Sat Mar 15 10:37:10 2008
@@ -21,13 +21,40 @@
import java.util.List;
+/**
+ * The InterceptorProvider interface is implemented by objects that have
+ * interceptor chains associated with them. The methods in this interface
+ * provide an ability to add and remove interceptors within the chains
+ * of the InterceptorProvider.
+ */
public interface InterceptorProvider {
+ /**
+ * Returns the list of interceptors attached to the incoming interceptor
+ * chain of the object.
+ * @return <code>List<Interceptor></code> incoming interceptor chain
+ */
List<Interceptor> getInInterceptors();
+ /**
+ * Returns the list of interceptors attached to the outgoing interceptor
+ * chain of the object.
+ * @return <code>List<Interceptor></code> outgoing interceptor chain
+ */
List<Interceptor> getOutInterceptors();
+ /**
+ * Returns the list of interceptors attached to the incoming fault
interceptor
+ * chain of the object.
+ * @return <code>List<Interceptor></code> incoming fault interceptor chain
+ */
+ List<Interceptor> getInFaultInterceptors();
+
+ /**
+ * Returns the list of interceptors attached to the outgoing fault
interceptor
+ * chain of the object.
+ * @return <code>List<Interceptor></code> outgoing fault interceptor chain
+ */
List<Interceptor> getOutFaultInterceptors();
- List<Interceptor> getInFaultInterceptors();
}