Class HandlerConstants

java.lang.Object
com.ibm.wsspi.webservices.handler.HandlerConstants

public class HandlerConstants extends 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 Details

    • IS_SERVER_SIDE

      public static final 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:
    • IS_CLIENT_SIDE

      public static final 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:
    • FLOW_TYPE

      public static final 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
      ("INOUT" is the default setting.)
      See Also:
    • FLOW_TYPE_IN

      public static final String FLOW_TYPE_IN
      See Also:
    • FLOW_TYPE_OUT

      public static final String FLOW_TYPE_OUT
      See Also:
    • FLOW_TYPE_INOUT

      public static final String FLOW_TYPE_INOUT
      See Also:
    • ENGINE_TYPE

      public static final 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
      ("ALL" is the default setting.)
      See Also:
    • ENGINE_TYPE_JAXWS

      public static final String ENGINE_TYPE_JAXWS
      See Also:
    • ENGINE_TYPE_JAXRS

      public static final String ENGINE_TYPE_JAXRS
      See Also:
    • ENGINE_TYPE_ALL

      public static final String ENGINE_TYPE_ALL
      See Also:
  • Constructor Details

    • HandlerConstants

      public HandlerConstants()