Package org.apache.camel.component.docker.producer

Examples of org.apache.camel.component.docker.producer.DockerProducer


    public Producer createProducer() throws Exception {
        DockerOperation operation = configuration.getOperation();
       
        if (operation != null && operation.canProduce()) {
            return new DockerProducer(this);
        } else {
            throw new DockerException(operation + " is not a valid producer operation");
        }
    }
View Full Code Here

TOP

Related Classes of org.apache.camel.component.docker.producer.DockerProducer

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.