Package org.switchyard.component.jca.composer

Examples of org.switchyard.component.jca.composer.IndexedRecordBindingData


    }
   
    @Override
    public Message handle(Exchange exchange, Connection conn, Interaction interact) throws Exception {
        IndexedRecord record = getRecordFactory().createIndexedRecord(IndexedRecordHandler.class.getName());
        IndexedRecord outRecord = (IndexedRecord) interact.execute(getInteractionSpec(), getMessageComposer(IndexedRecordBindingData.class).decompose(exchange, new IndexedRecordBindingData(record)).getRecord());
        return _composer.compose(new IndexedRecordBindingData(outRecord), exchange);
    }
View Full Code Here

TOP

Related Classes of org.switchyard.component.jca.composer.IndexedRecordBindingData

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.