Package org.apache.camel.model.config

Examples of org.apache.camel.model.config.ResequencerConfig


    /**
     * @param resequencerConfig the resequencerConfig to set
     */
    public void setResequencerConfig(ResequencerConfig resequencerConfig) {
        ResequencerConfig oldValue = this.resequencerConfig;
        this.resequencerConfig = resequencerConfig;
        if (!isSame(oldValue, resequencerConfig)) {
            firePropertyChange(PROPERTY_RESEQUENCERCONFIG, oldValue, resequencerConfig);
        }
    }
View Full Code Here

TOP

Related Classes of org.apache.camel.model.config.ResequencerConfig

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.