com.bea.wsrp.consumer.interceptor
Enum Status.PreInvoke

java.lang.Object
  extended by java.lang.Enum<Status.PreInvoke>
      extended by com.bea.wsrp.consumer.interceptor.Status.PreInvoke
All Implemented Interfaces
Serializable, Comparable<Status.PreInvoke>
Enclosing interface:
Status

public static enum Status.PreInvoke
extends Enum<Status.PreInvoke>

The possible return values for the preInvoke method of an interceptor.


Enum Constant Summary
ABORT_CHAIN
          Skips calling preInvoke() methods of the subsequent interceptors, BUT sends the message to the producer.
CONTINUE_CHAIN
          Indicates normal execution and continues executing interceptors chain.
SKIP_REQUEST_ABORT_CHAIN
          Skips calling preInvoke() methods of the subsequent interceptors AND skips sending the request message to the producer.
 
Method Summary
static Status.PreInvoke valueOf(String name)
          Returns the enum constant of this type with the specified name.
static Status.PreInvoke[] values()
          Returns an array containing the constants of this enum type, in the order theyre declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

CONTINUE_CHAIN

public static final Status.PreInvoke CONTINUE_CHAIN
Indicates normal execution and continues executing interceptors chain.


ABORT_CHAIN

public static final Status.PreInvoke ABORT_CHAIN
Skips calling preInvoke() methods of the subsequent interceptors, BUT sends the message to the producer.


SKIP_REQUEST_ABORT_CHAIN

public static final Status.PreInvoke SKIP_REQUEST_ABORT_CHAIN
Skips calling preInvoke() methods of the subsequent interceptors AND skips sending the request message to the producer.

Method Detail

values

public static final Status.PreInvoke[] values()
Returns an array containing the constants of this enum type, in the order theyre declared.


valueOf

public static Status.PreInvoke valueOf(String name)
Returns the enum constant of this type with the specified name.



Copyright © 2011, Oracle. All rights reserved.