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

org.eclipse.pass.deposit.model.DepositFile Maven / Gradle / Ivy

/*
 * Copyright 2018 Johns Hopkins University
 *
 * 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 org.eclipse.pass.deposit.model;

/**
 * Represents a file that was uploaded by a user into PASS; e.g. a manuscript or supplement material for a specific
 * submission.
 */
public class DepositFile {

    /**
     * The type of file
     */
    private DepositFileType type;

    /**
     * The name of the file in the archive
     */
    private String name;

    /**
     * Differentiates between files of the same type
     * 

* Required field for {@link DepositFileType#figure}, {@link DepositFileType#table}, * and {@link DepositFileType#supplement} file types *

*/ private String label; /** * The location of the bytes for the file */ private String location; /** * The ID of the Pass File entity */ private String passFileId; /** * @return {@link #type} */ public DepositFileType getType() { return type; } /** * @param type {@link #type} */ public void setType(DepositFileType type) { this.type = type; } /** * @return {@link #name} */ public String getName() { return name; } /** * @param name {@link #name} */ public void setName(String name) { this.name = name; } /** * @return {@link #label} */ public String getLabel() { return label; } /** * @param label {@link #label} */ public void setLabel(String label) { this.label = label; } /** * @return {@link #passFileId} */ public String getPassFileId() { return passFileId; } /** * @param passFileId {@link #passFileId} */ public void setPassFileId(String passFileId) { this.passFileId = passFileId; } /** * @return {@link #location} */ public String getLocation() { return location; } /** * @param location {@link #location} */ public void setLocation(String location) { this.location = location; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } DepositFile depositFile = (DepositFile) o; if (type != depositFile.type) { return false; } if (name != null ? !name.equals(depositFile.name) : depositFile.name != null) { return false; } if (label != null ? !label.equals(depositFile.label) : depositFile.label != null) { return false; } return location != null ? location.equals(depositFile.location) : depositFile.location == null; } @Override public int hashCode() { int result = type != null ? type.hashCode() : 0; result = 31 * result + (name != null ? name.hashCode() : 0); result = 31 * result + (label != null ? label.hashCode() : 0); result = 31 * result + (location != null ? location.hashCode() : 0); return result; } @Override public String toString() { return "DepositFile{" + "type=" + type + ", name='" + name + '\'' + ", label='" + label + '\'' + ", location='" + location + '\'' + '}'; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy