All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.consol.citrus.endpoint.direct.DirectEndpoints Maven / Gradle / Ivy

package com.consol.citrus.endpoint.direct;

import com.consol.citrus.endpoint.builder.AsyncSyncEndpointBuilder;

/**
 * @author Christoph Deppisch
 */
public class DirectEndpoints extends AsyncSyncEndpointBuilder {

    /**
     * Private constructor setting the sync and async builder implementation.
     */
    private DirectEndpoints() {
        super(new DirectEndpointBuilder(), new DirectSyncEndpointBuilder());
    }

    /**
     * Static entry method for in memory endpoint builders.
     * @return
     */
    public static DirectEndpoints direct() {
        return new DirectEndpoints();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy