Class DefaultEndpointFactory

java.lang.Object
org.citrusframework.endpoint.DefaultEndpointFactory
All Implemented Interfaces:
EndpointFactory

public class DefaultEndpointFactory extends Object implements EndpointFactory
Default endpoint factory implementation uses registered endpoint components in Spring application context to create endpoint from given endpoint uri. If endpoint bean name is given factory directly creates from application context. If endpoint uri is given factory tries to find proper endpoint component in application context and in default endpoint component configuration. Default endpoint components are listed in property file reference where key is the component name and value is the fully qualified class name of the implementing endpoint component class.
Since:
1.4.1
Author:
Christoph Deppisch
  • Constructor Details

    • DefaultEndpointFactory

      public DefaultEndpointFactory()
  • Method Details

    • create

      public Endpoint create(String endpointName, Annotation endpointConfig, TestContext context)
      Description copied from interface: EndpointFactory
      Finds endpoint by parsing the given endpoint annotation. The test context helps to create endpoints by providing the reference resolver so registered beans and bean references can be set as configuration properties.
      Specified by:
      create in interface EndpointFactory
      Returns:
    • create

      public Endpoint create(String endpointName, CitrusEndpoint endpointConfig, Class<?> endpointType, TestContext context)
      Description copied from interface: EndpointFactory
      Finds endpoint by parsing the given endpoint properties. The test context helps to create endpoints by providing the reference resolver so registered beans and bean references can be set as configuration properties.
      Specified by:
      create in interface EndpointFactory
      Returns:
    • create

      public Endpoint create(String uri, TestContext context)
      Description copied from interface: EndpointFactory
      Finds endpoint by parsing the given endpoint uri. The test context helps to create endpoints by providing the reference resolver so registered beans and bean references can be set as configuration properties.
      Specified by:
      create in interface EndpointFactory
      Returns: