Annotation Type ClientInterceptorPriority


@Target(TYPE) @Retention(RUNTIME) public @interface ClientInterceptorPriority
The priority of the client interceptor. If no priority is specified, then APPLICATION is used.
Author:
David M. Lloyd
  • Required Element Summary

    Required Elements
    Modifier and Type
    Required Element
    Description
    int
     
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final int
    The starting range value for application interceptors.
    static final int
    The ending range value for application interceptors.
    static final int
    The starting range value for provided JBoss "after" interceptors.
    static final int
    The ending range value for provided JBoss "before" interceptors.
    static final int
    The starting range value for provided JBoss "before" interceptors.
    static final int
    The ending range value for provided JBoss "before" interceptors.
    static final int
    The starting range value for library "after" interceptors.
    static final int
    The ending range value for library "after" interceptors.
    static final int
    The starting range value for library "before" interceptors.
    static final int
    The ending range value for library "before" interceptors.
  • Field Details

    • APPLICATION

      static final int APPLICATION
      The starting range value for application interceptors.
      See Also:
    • APPLICATION_END

      static final int APPLICATION_END
      The ending range value for application interceptors.
      See Also:
    • LIBRARY_BEFORE

      static final int LIBRARY_BEFORE
      The starting range value for library "before" interceptors.
      See Also:
    • LIBRARY_BEFORE_END

      static final int LIBRARY_BEFORE_END
      The ending range value for library "before" interceptors.
      See Also:
    • JBOSS_BEFORE

      static final int JBOSS_BEFORE
      The starting range value for provided JBoss "before" interceptors.
      See Also:
    • JBOSS_BEFORE_END

      static final int JBOSS_BEFORE_END
      The ending range value for provided JBoss "before" interceptors.
      See Also:
    • LIBRARY_AFTER

      static final int LIBRARY_AFTER
      The starting range value for library "after" interceptors.
      See Also:
    • LIBRARY_AFTER_END

      static final int LIBRARY_AFTER_END
      The ending range value for library "after" interceptors.
      See Also:
    • JBOSS_AFTER

      static final int JBOSS_AFTER
      The starting range value for provided JBoss "after" interceptors.
      See Also:
    • JBOSS_AFTER_END

      static final int JBOSS_AFTER_END
      The ending range value for provided JBoss "before" interceptors.
      See Also:
  • Element Details

    • value

      int value