Class DatabindingFactoryImpl


public class DatabindingFactoryImpl extends DatabindingFactory
DatabindingFactoryImpl
Author:
[email protected]
  • Field Details

  • Constructor Details

    • DatabindingFactoryImpl

      public DatabindingFactoryImpl()
  • Method Details

    • properties

      public Map<String,Object> properties()
      Description copied from class: DatabindingFactory
      Access properties on the WsFactory instance.
      Specified by:
      properties in class DatabindingFactory
      Returns:
      properties of this WsFactory
    • provider

      public DatabindingProvider provider(DatabindingConfig config)
    • createRuntime

      public Databinding createRuntime(DatabindingConfig config)
      Description copied from class: DatabindingFactory
      Creates a new instance of a WsRuntime which is initialized with the specified configuration object.
      Specified by:
      createRuntime in class DatabindingFactory
      Parameters:
      config - the EndpointRuntimeConfig to init this WsRuntime
      Returns:
      New instance of a WsRuntime
    • createWsdlGen

      public WSDLGenerator createWsdlGen(DatabindingConfig config)
    • createBuilder

      public Databinding.Builder createBuilder(Class<?> contractClass, Class<?> endpointClass)
      Description copied from class: DatabindingFactory
      Creates a new instance of a Databinding.Builder which is initialized with the specified contractClass and endpointClass. The most importance initial states of a Builder object is the contract class which is also called "service endpoint interface" or "SEI" in JAX-WS and JAX-RPC, and the implementation bean class (endpointClass). The the implementation bean class (endpointClass) should be null if the Builder is to create the client side proxy databinding.
      Specified by:
      createBuilder in class DatabindingFactory
      Parameters:
      contractClass - The service endpoint interface class
      endpointClass - The service implementation bean class
      Returns:
      New instance of a Databinding.Builder