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

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


    @Produces
    @Named("bookFlightFunctionTemplate")
    public FunctionTemplate createBookFlightFunctionTemplate(
            @Named("importParameterList") List<ListFieldMetaData> importParameterList,
            @Named("exportParameterList") List<ListFieldMetaData> exportParameterList ) {
        FunctionTemplate template = RfcFactory.eINSTANCE.createFunctionTemplate();
        template.setImportParameterList(importParameterList);
        template.setExportParameterList(exportParameterList);
        return template;
    }
View Full Code Here

TOP

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

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.