Uses of Class
org.jboss.as.ee.component.InterceptorDescription
-
Packages that use InterceptorDescription Package Description org.jboss.as.ee.component -
-
Uses of InterceptorDescription in org.jboss.as.ee.component
Methods in org.jboss.as.ee.component that return InterceptorDescription Modifier and Type Method Description InterceptorDescriptionComponentDescription. getClassInterceptor(String interceptorClassName)Returns theInterceptorDescriptionfor the passedinterceptorClassName, if such a class interceptor exists for this component description.Methods in org.jboss.as.ee.component that return types with arguments of type InterceptorDescription Modifier and Type Method Description Set<InterceptorDescription>ComponentDescription. getAllInterceptors()Returns a combined map of class and method level interceptorsList<InterceptorDescription>ComponentDescription. getClassInterceptors()Get the list of interceptor classes applied directly to class.List<InterceptorDescription>ComponentDescription. getDefaultInterceptors()Map<org.jboss.invocation.proxy.MethodIdentifier,List<InterceptorDescription>>ComponentDescription. getMethodInterceptors()Get the method interceptor configurations.Methods in org.jboss.as.ee.component with parameters of type InterceptorDescription Modifier and Type Method Description voidComponentDescription. addClassInterceptor(InterceptorDescription description)Add a class level interceptor.voidComponentDescription. addMethodInterceptor(org.jboss.invocation.proxy.MethodIdentifier method, InterceptorDescription description)Add a method interceptor class name.Method parameters in org.jboss.as.ee.component with type arguments of type InterceptorDescription Modifier and Type Method Description voidComponentDescription. setClassInterceptors(List<InterceptorDescription> classInterceptors)Override the class interceptors with a new set of interceptorsvoidComponentDescription. setDefaultInterceptors(List<InterceptorDescription> defaultInterceptors)voidComponentDescription. setMethodInterceptors(org.jboss.invocation.proxy.MethodIdentifier identifier, List<InterceptorDescription> interceptorDescriptions)Sets the method level interceptors for a method, and marks it as exclude class and default level interceptors.
-