Package org.apache.camel.component.dropbox.util

Examples of org.apache.camel.component.dropbox.util.DropboxOperation


     * @param configuration object containing the parameters.
     * @throws DropboxException
     */
    public static void validate(DropboxConfiguration configuration) throws DropboxException {
        validateCommonProperties(configuration);
        DropboxOperation op = configuration.getOperation();
        if (op == DropboxOperation.get) {
            validateGetOp(configuration);
        } else if (op == DropboxOperation.put) {
            validatePutOp(configuration);
        } else if (op == DropboxOperation.search) {
View Full Code Here

TOP

Related Classes of org.apache.camel.component.dropbox.util.DropboxOperation

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.