Package org.switchyard.component.jca.config.model

Examples of org.switchyard.component.jca.config.model.InteractionSpecModel


        if (connectionSpecModel != null) {
            String connSpecClassName = connectionSpecModel.getConnectionSpecClassName();
            Properties connSpecProps = connectionSpecModel.getProperties();
            processor.setConnectionSpec(connSpecClassName, connSpecProps);
        }
        InteractionSpecModel interactionSpecModel = outboundInteractionModel.getInteractionSpec();
        if (interactionSpecModel != null) {
            String interactSpecClassName = interactionSpecModel.getInteractionSpecClassName();
            Properties interactSpecProps = interactionSpecModel.getProperties();
            processor.setInteractionSpec(interactSpecClassName, interactSpecProps);
        }

        return new OutboundHandler(processor, getServiceDomain());
    }
View Full Code Here

TOP

Related Classes of org.switchyard.component.jca.config.model.InteractionSpecModel

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.