Package org.apache.camel.builder

Examples of org.apache.camel.builder.FluentArg.reference()


        // lets convert any references
        Set<Map.Entry<String, Object>> attributeEntries = attributeArguments.entrySet();
        for (Map.Entry<String, Object> entry : attributeEntries) {
            String name = entry.getKey();
            FluentArg arg = match.parameterAnnotations.get(name);
            if (arg != null && (arg.reference() || name.equals("ref"))) {
                Object value = entry.getValue();
                if (value instanceof String) {
                    entry.setValue(new RuntimeBeanReference(value.toString()));
                }
            }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.