Class 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 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
        ("INOUT" is the default setting.)
        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
        ("ALL" is the default setting.)
        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
    • Constructor Detail

      • HandlerConstants

        public HandlerConstants()