Class HandlerConstants
- java.lang.Object
-
- com.ibm.wsspi.webservices.handler.HandlerConstants
-
public class HandlerConstants extends java.lang.Object
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
Fields Modifier and Type Field Description static java.lang.String
ENGINE_TYPE
Service propertystatic java.lang.String
ENGINE_TYPE_ALL
static java.lang.String
ENGINE_TYPE_JAXRS
static java.lang.String
ENGINE_TYPE_JAXWS
static java.lang.String
FLOW_TYPE
Service propertystatic java.lang.String
FLOW_TYPE_IN
static java.lang.String
FLOW_TYPE_INOUT
static java.lang.String
FLOW_TYPE_OUT
static java.lang.String
IS_CLIENT_SIDE
Service propertystatic java.lang.String
IS_SERVER_SIDE
Service property
-
Constructor Summary
Constructors Constructor Description HandlerConstants()
-
-
-
Field Detail
-
IS_SERVER_SIDE
public static final java.lang.String 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:
- Constant Field Values
-
IS_CLIENT_SIDE
public static final java.lang.String 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:
- Constant Field Values
-
FLOW_TYPE
public static final java.lang.String 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:
- Constant Field Values
-
FLOW_TYPE_IN
public static final java.lang.String FLOW_TYPE_IN
- See Also:
- Constant Field Values
-
FLOW_TYPE_OUT
public static final java.lang.String FLOW_TYPE_OUT
- See Also:
- Constant Field Values
-
FLOW_TYPE_INOUT
public static final java.lang.String FLOW_TYPE_INOUT
- See Also:
- Constant Field Values
-
ENGINE_TYPE
public static final java.lang.String 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:
- Constant Field Values
-
ENGINE_TYPE_JAXWS
public static final java.lang.String ENGINE_TYPE_JAXWS
- See Also:
- Constant Field Values
-
ENGINE_TYPE_JAXRS
public static final java.lang.String ENGINE_TYPE_JAXRS
- See Also:
- Constant Field Values
-
ENGINE_TYPE_ALL
public static final java.lang.String ENGINE_TYPE_ALL
- See Also:
- Constant Field Values
-
-