Package org.apache.camel.component.dropbox.dto

Source Code of org.apache.camel.component.dropbox.dto.DropboxFileUploadResult

/**
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements.  See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License.  You may obtain a copy of the License at
*
*      http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.camel.component.dropbox.dto;

import java.util.Map;

import org.apache.camel.Exchange;
import org.apache.camel.component.dropbox.util.DropboxResultCode;
import org.apache.camel.component.dropbox.util.DropboxResultHeader;


public class DropboxFileUploadResult extends DropboxResult {

    /**
     * Object payload contained in Exchange
     * In case of a single file Exchange Header is populated with the name of the remote path uploaded
     * In case of a multiple files Exchange Header is populated with the name of the remote paths uploaded
     * In case of a single file Exchange Body is populated with the result code of the upload operation for the remote path.
     * In case of multiple files Exchange Body is populated with a map containing as key the remote path uploaded
     * and as value the result code of the upload operation
     * @param exchange
     */
    @Override
    public void populateExchange(Exchange exchange) {
        Map<String, DropboxResultCode> map = (Map<String, DropboxResultCode>)resultEntries;
        if (map.size() == 1) {
            //set info in exchange
            String pathExtracted = null;
            DropboxResultCode codeExtracted = null;
            for (Map.Entry<String, DropboxResultCode> entry : map.entrySet()) {
                pathExtracted = entry.getKey();
                codeExtracted = entry.getValue();
            }
            exchange.getIn().setHeader(DropboxResultHeader.UPLOADED_FILE.name(), pathExtracted);
            exchange.getIn().setBody(codeExtracted.name());
        } else {
            StringBuffer pathsExtracted = new StringBuffer();
            for (Map.Entry<String, DropboxResultCode> entry : map.entrySet()) {
                pathsExtracted.append(entry.getKey() + "\n");
            }
            exchange.getIn().setHeader(DropboxResultHeader.UPLOADED_FILES.name(), pathsExtracted.toString());
            exchange.getIn().setBody(map);
        }
    }
}
TOP

Related Classes of org.apache.camel.component.dropbox.dto.DropboxFileUploadResult

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.