Class AuthPolicyValidatingInterceptor

    • Constructor Detail

      • AuthPolicyValidatingInterceptor

        public AuthPolicyValidatingInterceptor()
      • AuthPolicyValidatingInterceptor

        public AuthPolicyValidatingInterceptor​(String phase)
    • Method Detail

      • handleMessage

        public void handleMessage​(Message message)
                           throws Fault
        Description copied from interface: Interceptor
        Intercepts a message. Interceptors should NOT invoke handleMessage or handleFault on the next interceptor - the interceptor chain will take care of this.
        Specified by:
        handleMessage in interface Interceptor<Message>
        Throws:
        Fault
      • handleFault

        public void handleFault​(Message arg0)
        Description copied from interface: Interceptor
        Called for all interceptors (in reverse order) on which handleMessage had been successfully invoked, when normal execution of the chain was aborted for some reason.
        Specified by:
        handleFault in interface Interceptor<Message>
      • getAfter

        public Set<String> getAfter()
        Description copied from interface: PhaseInterceptor
        Returns a set containing the IDs of the interceptors that should be executed before this interceptor. This interceptor will be placed in the chain after the interceptors in the set.
        Specified by:
        getAfter in interface PhaseInterceptor<Message>
        Returns:
        the IDs of the interceptors
      • getBefore

        public Set<String> getBefore()
        Description copied from interface: PhaseInterceptor
        Returns a set containing the IDs of the interceptors that should be executed after this interceptor. This interceptor will be placed in the inteceptor chain before the interceptors in the set.
        Specified by:
        getBefore in interface PhaseInterceptor<Message>
        Returns:
        the ids of the interceptors