Package org.apache.camel.model

Examples of org.apache.camel.model.InOnlyDefinition


    }

    @SuppressWarnings("rawtypes")
    @Override
    public ProcessorDefinition createCamelDefinition() {
        InOnlyDefinition answer = new InOnlyDefinition();

        answer.setUri(toXmlPropertyValue(PROPERTY_URI, this.getUri()));

        super.savePropertiesToCamelDefinition(answer);
        return answer;
    }
View Full Code Here


    @Override
    protected void loadPropertiesFromCamelDefinition(ProcessorDefinition processor) {
        super.loadPropertiesFromCamelDefinition(processor);

        if (processor instanceof InOnlyDefinition) {
            InOnlyDefinition node = (InOnlyDefinition) processor;

            this.setUri(node.getUri());
        } else {
            throw new IllegalArgumentException("ProcessorDefinition not an instanceof InOnlyDefinition. Was " + processor.getClass().getName());
        }
    }
View Full Code Here

TOP

Related Classes of org.apache.camel.model.InOnlyDefinition

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.