Class HandlerConstants
java.lang.Object
com.ibm.wsspi.webservices.handler.HandlerConstants
The properties associated with the registered handlers specify what engine type and flow type the handlers will be
executed. Valid service properties are listed
as constants below with descriptive javadoc.
-
Field Summary
Modifier and TypeFieldDescriptionstatic final String
Service propertystatic final String
static final String
static final String
static final String
Service propertystatic final String
static final String
static final String
static final String
Service propertystatic final String
Service property -
Constructor Summary
-
Method Summary
-
Field Details
-
IS_SERVER_SIDE
Service property
The value of this property should be a boolean: if true, the handler will take effect in Server Side. if false, the handler will not take effect in Server side- true is default value
- See Also:
-
IS_CLIENT_SIDE
Service property
The value of this property should be a boolean: if true, the handler will take effect in Client Side. if false, the handler will not take effect in Client side- true is default value
- See Also:
-
FLOW_TYPE
Service property
The value of this property determines the flow type the handler is to be performed. Acceptable values are as follows:- "IN" will take effect in IN Flow
- "OUT" will take effect in OUT Flow
- "INOUT" will take effect in both in IN and OUT Flow
- See Also:
-
FLOW_TYPE_IN
- See Also:
-
FLOW_TYPE_OUT
- See Also:
-
FLOW_TYPE_INOUT
- See Also:
-
ENGINE_TYPE
Service property
The value of this property determines the engine type the handler is to be performed. Acceptable values are as follows:- "JAX_WS" will take effect in JAXWS Engine
- "JAX_RS" will take effect in JAXRS Engine
- "ALL" will take effect in both in JAXWS and JAXRS Engine
- See Also:
-
ENGINE_TYPE_JAXWS
- See Also:
-
ENGINE_TYPE_JAXRS
- See Also:
-
ENGINE_TYPE_ALL
- See Also:
-
-
Constructor Details
-
HandlerConstants
public HandlerConstants()
-