Update traversal from AJSC 2 to Spring Boot
[aai/traversal.git] / aai-traversal / src / main / java / org / onap / aai / interceptors / package-info.java
1 /**
2  * <b>Interceptors</b> package is subdivided to pre and post interceptors
3  * If you want to add an additional interceptor you would need to add
4  * the priority level to AAIRequestFilterPriority or AAIResponsePriority
5  * to give a value which indicates the order in which the interceptor
6  * will be triggered and also you will add that value like here
7  *
8  * <pre>
9  *     <code>
10  *         @Priority(AAIRequestFilterPriority.YOUR_PRIORITY)
11  *         public class YourInterceptor extends AAIContainerFilter implements ContainerRequestFilter {
12  *
13  *         }
14  *     </code>
15  * </pre>
16  */
17 package org.onap.aai.interceptors;