Package org.apache.cxf.service.factory
Enum FactoryBeanListener.Event
- All Implemented Interfaces:
- Serializable,- Comparable<FactoryBeanListener.Event>,- java.lang.constant.Constable
- Enclosing interface:
- FactoryBeanListener
- 
Nested Class SummaryNested classes/interfaces inherited from class java.lang.EnumEnum.EnumDesc<E extends Enum<E>>
- 
Enum Constant SummaryEnum ConstantsEnum ConstantDescriptionBindingInfoBindingInfo, BindingOperationInfo, Implementation MethodEndpoint, ClientCalled at the start of processing when it detects that the service is to be created based on a Java class.Called at the start of processing when it detects that the service is to be created based on a wsdl contract.DataBindingEvent fired at the very end of processing.EndpointInfo, Endpoint, ClassEndpointInfo, Endpoint, SEI Class, ClassEndpointInfoInterfaceInfo, Class<?OperationInfo, MethodOperationInfo, Class<?OperationInfo, Method, MessageInfoEndpointServer, targetObject, ClassClass[], InvokationHandler, ProxyServer, targetObject, ClassCalled after the Service is set into the Factory after which the getService() call will return a valid value.Event fired at the very start of processing.Called after the wsdl is loaded/parsed.
- 
Method SummaryModifier and TypeMethodDescriptionstatic FactoryBeanListener.EventReturns the enum constant of this type with the specified name.static FactoryBeanListener.Event[]values()Returns an array containing the constants of this enum type, in the order they are declared.
- 
Enum Constant Details- 
START_CREATEEvent fired at the very start of processing. No parameters. Useful for setting up any state the listener may need to maintain.
- 
END_CREATEEvent fired at the very end of processing. One parameter is passed in which is the Service object that was created.
- 
CREATE_FROM_WSDLCalled 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_CLASSCalled 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_LOADEDCalled after the wsdl is loaded/parsed. Single parameter of the WSS4J Definition of the WSDL.
- 
SERVICE_SETCalled after the Service is set into the Factory after which the getService() call will return a valid value. One parameter of the Service object.
- 
INTERFACE_OPERATION_BOUNDOperationInfo, Method
- 
OPERATIONINFO_IN_MESSAGE_SETOperationInfo, Method, MessageInfo
- 
OPERATIONINFO_OUT_MESSAGE_SET
- 
OPERATIONINFO_FAULTOperationInfo, Class<? extends Throwable>, FaultInfo
- 
INTERFACE_CREATEDInterfaceInfo, Class<?>
- 
DATABINDING_INITIALIZEDDataBinding
- 
ENDPOINT_CREATEDEndpointInfo, Endpoint, Class
- 
PRE_SERVER_CREATEServer, targetObject, Class
- 
SERVER_CREATEDServer, targetObject, Class
- 
BINDING_OPERATION_CREATEDBindingInfo, BindingOperationInfo, Implementation Method
- 
BINDING_CREATEDBindingInfo
- 
PRE_CLIENT_CREATEEndpoint
- 
CLIENT_CREATEDEndpoint, Client
- 
ENDPOINT_SELECTEDEndpointInfo, Endpoint, SEI Class, Class
- 
ENDPOINTINFO_CREATEDEndpointInfo
- 
PROXY_CREATEDClass[], InvokationHandler, Proxy
 
- 
- 
Method Details- 
valuesReturns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
 
- 
valueOfReturns 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
 
 
-