Package org.apache.camel.component.dropbox.integration.consumer

Examples of org.apache.camel.component.dropbox.integration.consumer.DropboxScheduledPollGetConsumer


        if (this.configuration.getOperation() == DropboxOperation.search) {
            consumer = new DropboxScheduledPollSearchConsumer(this, processor, configuration);
            consumer.setDelay(POLL_CONSUMER_DELAY);
            return consumer;
        } else if (this.configuration.getOperation() == DropboxOperation.get) {
            consumer = new DropboxScheduledPollGetConsumer(this, processor, configuration);
            consumer.setDelay(POLL_CONSUMER_DELAY);
            return consumer;
        } else {
            throw new DropboxException("operation specified is not valid for consumer!");
        }
View Full Code Here

TOP

Related Classes of org.apache.camel.component.dropbox.integration.consumer.DropboxScheduledPollGetConsumer

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.