public static enum FactoryBeanListener.Event extends Enum<FactoryBeanListener.Event>
| Enum Constant and Description | 
|---|
| BINDING_CREATEDBindingInfo | 
| BINDING_OPERATION_CREATEDBindingInfo, BindingOperationInfo, Implementation Method | 
| CLIENT_CREATEDEndpoint, Client | 
| CREATE_FROM_CLASSCalled at the start of processing when it detects that the service
 is to be created based on a Java class. | 
| CREATE_FROM_WSDLCalled at the start of processing when it detects that the service
 is to be created based on a wsdl contract. | 
| DATABINDING_INITIALIZEDDataBinding | 
| END_CREATEEvent fired at the very end of processing. | 
| ENDPOINT_CREATEDEndpointInfo, Endpoint, Class | 
| ENDPOINT_SELECTEDEndpointInfo, Endpoint, SEI Class, Class | 
| ENDPOINTINFO_CREATEDEndpointInfo | 
| INTERFACE_CREATEDInterfaceInfo, Class | 
| INTERFACE_OPERATION_BOUNDOperationInfo, Method | 
| OPERATIONINFO_FAULTOperationInfo, Class | 
| OPERATIONINFO_IN_MESSAGE_SETOperationInfo, Method, MessageInfo | 
| OPERATIONINFO_OUT_MESSAGE_SET | 
| PRE_CLIENT_CREATEEndpoint | 
| PRE_SERVER_CREATEServer, targetObject, Class | 
| PROXY_CREATEDClass[], InvokationHandler, Proxy | 
| SERVER_CREATEDServer, targetObject, Class | 
| SERVICE_SETCalled after the Service is set into the Factory after which the getService()
 call will return a valid value. | 
| START_CREATEEvent fired at the very start of processing. | 
| WSDL_LOADEDCalled after the wsdl is loaded/parsed. | 
| Modifier and Type | Method and Description | 
|---|---|
| static FactoryBeanListener.Event | valueOf(String name)Returns 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. | 
public static final FactoryBeanListener.Event START_CREATE
public static final FactoryBeanListener.Event END_CREATE
public static final FactoryBeanListener.Event CREATE_FROM_WSDL
public static final FactoryBeanListener.Event CREATE_FROM_CLASS
public static final FactoryBeanListener.Event WSDL_LOADED
public static final FactoryBeanListener.Event SERVICE_SET
public static final FactoryBeanListener.Event INTERFACE_OPERATION_BOUND
public static final FactoryBeanListener.Event OPERATIONINFO_IN_MESSAGE_SET
public static final FactoryBeanListener.Event OPERATIONINFO_OUT_MESSAGE_SET
public static final FactoryBeanListener.Event OPERATIONINFO_FAULT
public static final FactoryBeanListener.Event INTERFACE_CREATED
public static final FactoryBeanListener.Event DATABINDING_INITIALIZED
public static final FactoryBeanListener.Event ENDPOINT_CREATED
public static final FactoryBeanListener.Event PRE_SERVER_CREATE
public static final FactoryBeanListener.Event SERVER_CREATED
public static final FactoryBeanListener.Event BINDING_OPERATION_CREATED
public static final FactoryBeanListener.Event BINDING_CREATED
public static final FactoryBeanListener.Event PRE_CLIENT_CREATE
public static final FactoryBeanListener.Event CLIENT_CREATED
public static final FactoryBeanListener.Event ENDPOINT_SELECTED
public static final FactoryBeanListener.Event ENDPOINTINFO_CREATED
public static final FactoryBeanListener.Event PROXY_CREATED
public static FactoryBeanListener.Event[] values()
for (FactoryBeanListener.Event c : FactoryBeanListener.Event.values()) System.out.println(c);
public static FactoryBeanListener.Event valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullApache CXF