Package org.fusesource.camel.component.sap.model.rfc

Examples of org.fusesource.camel.component.sap.model.rfc.RepositoryData


    @Produces
    @Named("nplRepositoryData")
    public RepositoryData createRepositoryData(
            @Named("bookFlightFunctionTemplate") FunctionTemplate bookFlightFunctionTemplate ) {
        RepositoryData data = RfcFactory.eINSTANCE.createRepositoryData();
        Map<String, FunctionTemplate> templates = new HashMap<String, FunctionTemplate>();
        templates.put("BOOK_FLIGHT", bookFlightFunctionTemplate);
        data.setFunctionTemplates(templates);
        return data;
    }
View Full Code Here

TOP

Related Classes of org.fusesource.camel.component.sap.model.rfc.RepositoryData

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.