All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.proximax.xpx.facade.upload.MultiFileUploadResult Maven / Gradle / Ivy

There is a newer version: 0.1.0-beta.10
Show newest version
/*
 * Copyright 2018 ProximaX Limited
 *
 * Licensed 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 io.proximax.xpx.facade.upload;

import java.io.File;
import java.util.List;

import static java.util.Collections.emptyList;
import static java.util.Collections.unmodifiableList;


/**
 * The Class MultiFileUploadResult.
 */
public class MultiFileUploadResult {

    /** The file upload results. */
    private List fileUploadResults;

    /**
     * Instantiates a new multi file upload result.
     *
     * @param fileUploadResults the file upload results
     */
    public MultiFileUploadResult(List fileUploadResults) {
        this.fileUploadResults = fileUploadResults == null ? emptyList() : unmodifiableList(fileUploadResults);
    }

    /**
     * Gets the file upload results.
     *
     * @return the file upload results
     */
    public List getFileUploadResults() {
        return fileUploadResults;
    }

    /**
     * Checks for failure.
     *
     * @return true, if successful
     */
    public boolean hasFailure() {
        return fileUploadResults.stream().anyMatch(result -> result.uploadException != null);
    }

    /**
     * The Class FileUploadResult.
     */
    public static class FileUploadResult {

        /** The file. */
        private File file;
        
        /** The upload result. */
        private UploadResult uploadResult;
        
        /** The upload exception. */
        private UploadException uploadException;

        /**
         * Instantiates a new file upload result.
         *
         * @param file the file
         * @param uploadResult the upload result
         */
        public FileUploadResult(File file, UploadResult uploadResult) {
            this.file = file;
            this.uploadResult = uploadResult;
        }

        /**
         * Instantiates a new file upload result.
         *
         * @param file the file
         * @param uploadException the upload exception
         */
        public FileUploadResult(File file, UploadException uploadException) {
            this.file = file;
            this.uploadException = uploadException;
        }

        /**
         * Gets the file.
         *
         * @return the file
         */
        public File getFile() {
            return file;
        }

        /**
         * Gets the upload result.
         *
         * @return the upload result
         */
        public UploadResult getUploadResult() {
            return uploadResult;
        }

        /**
         * Gets the upload exception.
         *
         * @return the upload exception
         */
        public UploadException getUploadException() {
            return uploadException;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy