Enum FactoryBeanListener.Event

    • Enum Constant Detail

      • START_CREATE

        public static final FactoryBeanListener.Event START_CREATE
        Event fired at the very start of processing. No parameters. Useful for setting up any state the listener may need to maintain.
      • END_CREATE

        public static final FactoryBeanListener.Event END_CREATE
        Event fired at the very end of processing. One parameter is passed in which is the Service object that was created.
      • CREATE_FROM_WSDL

        public static final FactoryBeanListener.Event CREATE_FROM_WSDL
        Called at the start of processing when it detects that the service is to be created based on a wsdl contract. One String parameter of the URL of the wsdl.
      • CREATE_FROM_CLASS

        public static final FactoryBeanListener.Event CREATE_FROM_CLASS
        Called at the start of processing when it detects that the service is to be created based on a Java class. One Class parameter of the class that is being analyzed.
      • WSDL_LOADED

        public static final FactoryBeanListener.Event WSDL_LOADED
        Called after the wsdl is loaded/parsed. Single parameter of the WSS4J Definition of the WSDL.
      • SERVICE_SET

        public static final FactoryBeanListener.Event SERVICE_SET
        Called after the Service is set into the Factory after which the getService() call will return a valid value. One parameter of the Service object.
      • OPERATIONINFO_IN_MESSAGE_SET

        public static final FactoryBeanListener.Event OPERATIONINFO_IN_MESSAGE_SET
        OperationInfo, Method, MessageInfo
      • BINDING_OPERATION_CREATED

        public static final FactoryBeanListener.Event BINDING_OPERATION_CREATED
        BindingInfo, BindingOperationInfo, Implementation Method
      • ENDPOINT_SELECTED

        public static final FactoryBeanListener.Event ENDPOINT_SELECTED
        EndpointInfo, Endpoint, SEI Class, Class
    • Method Detail

      • values

        public static FactoryBeanListener.Event[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (FactoryBeanListener.Event c : FactoryBeanListener.Event.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static FactoryBeanListener.Event valueOf​(String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
        Parameters:
        name - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        IllegalArgumentException - if this enum type has no constant with the specified name
        NullPointerException - if the argument is null