Package org.citrusframework.endpoint
Class DefaultEndpointFactory
java.lang.Object
org.citrusframework.endpoint.DefaultEndpointFactory
- All Implemented Interfaces:
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 Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptioncreate(String endpointName, Annotation endpointConfig, TestContext context) Finds endpoint by parsing the given endpoint annotation.create(String endpointName, CitrusEndpoint endpointConfig, Class<?> endpointType, TestContext context) Finds endpoint by parsing the given endpoint properties.create(String uri, TestContext context) Finds endpoint by parsing the given endpoint uri.
-
Constructor Details
-
DefaultEndpointFactory
public DefaultEndpointFactory()
-
-
Method Details
-
create
Description copied from interface:EndpointFactoryFinds 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:
createin interfaceEndpointFactory- Returns:
-
create
public Endpoint create(String endpointName, CitrusEndpoint endpointConfig, Class<?> endpointType, TestContext context) Description copied from interface:EndpointFactoryFinds 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:
createin interfaceEndpointFactory- Returns:
-
create
Description copied from interface:EndpointFactoryFinds 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:
createin interfaceEndpointFactory- Returns:
-