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

org.dspace.checker.MostRecentChecksum Maven / Gradle / Ivy

The newest version!
/**
 * The contents of this file are subject to the license and copyright
 * detailed in the LICENSE and NOTICE files at the root of the source
 * tree and available online at
 *
 * http://www.dspace.org/license/
 */
package org.dspace.checker;

import java.io.Serializable;
import java.time.Instant;

import jakarta.persistence.Column;
import jakarta.persistence.Entity;
import jakarta.persistence.Id;
import jakarta.persistence.JoinColumn;
import jakarta.persistence.OneToOne;
import jakarta.persistence.Table;
import jakarta.persistence.Transient;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.dspace.content.Bitstream;

/**
 * Database entity representation of the most_recent_checksum table
 *
 * @author kevinvandevelde at atmire.com
 */
@Entity
@Table(name = "most_recent_checksum")
public class MostRecentChecksum implements Serializable {
    @Id
    @OneToOne
    @JoinColumn(name = "bitstream_id", nullable = false)
    private Bitstream bitstream;

    @Column(name = "to_be_processed", nullable = false)
    private boolean toBeProcessed;

    @Column(name = "expected_checksum", nullable = false)
    private String expectedChecksum;

    @Column(name = "current_checksum", nullable = false)
    private String currentChecksum;

    @Column(name = "last_process_start_date", nullable = false)
    private Instant processStartDate;

    @Column(name = "last_process_end_date", nullable = false)
    private Instant processEndDate;

    @Column(name = "checksum_algorithm", nullable = false)
    private String checksumAlgorithm;

    @Column(name = "matched_prev_checksum", nullable = false)
    private boolean matchedPrevChecksum;

    @Transient
    private boolean infoFound;

    @Transient
    private boolean bitstreamFound;

    @OneToOne
    @JoinColumn(name = "result", referencedColumnName = "result_code")
    private ChecksumResult checksumResult;

    /**
     * Protected constructor, create handled by the
     * {@link org.dspace.checker.service.MostRecentChecksumService}
     */
    protected MostRecentChecksum() {
    }

    public Bitstream getBitstream() {
        return bitstream;
    }

    void setBitstream(Bitstream bitstream) {
        this.bitstream = bitstream;
    }

    public boolean isToBeProcessed() {
        return toBeProcessed;
    }

    public void setToBeProcessed(boolean toBeProcessed) {
        this.toBeProcessed = toBeProcessed;
    }

    public String getExpectedChecksum() {
        return expectedChecksum;
    }

    public void setExpectedChecksum(String expectedChecksum) {
        this.expectedChecksum = expectedChecksum;
    }

    public String getCurrentChecksum() {
        return currentChecksum;
    }

    public void setCurrentChecksum(String currentChecksum) {
        this.currentChecksum = currentChecksum;
    }

    public Instant getProcessStartDate() {
        return processStartDate;
    }

    public void setProcessStartDate(Instant processStartDate) {
        this.processStartDate = processStartDate;
    }

    public Instant getProcessEndDate() {
        return processEndDate;
    }

    public void setProcessEndDate(Instant processEndDate) {
        this.processEndDate = processEndDate;
    }

    public String getChecksumAlgorithm() {
        return checksumAlgorithm;
    }

    public void setChecksumAlgorithm(String checksumAlgorithm) {
        this.checksumAlgorithm = checksumAlgorithm;
    }

    public boolean isMatchedPrevChecksum() {
        return matchedPrevChecksum;
    }

    public void setMatchedPrevChecksum(boolean matchedPrevChecksum) {
        this.matchedPrevChecksum = matchedPrevChecksum;
    }

    public ChecksumResult getChecksumResult() {
        return checksumResult;
    }

    public void setChecksumResult(ChecksumResult checksumResult) {
        this.checksumResult = checksumResult;
    }

    public boolean isInfoFound() {
        return infoFound;
    }

    public void setInfoFound(boolean infoFound) {
        this.infoFound = infoFound;
    }

    public boolean isBitstreamFound() {
        return bitstreamFound;
    }

    public void setBitstreamFound(boolean bitstreamFound) {
        this.bitstreamFound = bitstreamFound;
    }

    @Override
    public boolean equals(Object o) {
        if (this == o) {
            return true;
        }

        if (o == null || !(o instanceof MostRecentChecksum)) {
            return false;
        }

        MostRecentChecksum that = (MostRecentChecksum) o;

        return new EqualsBuilder()
            .append(toBeProcessed, that.toBeProcessed)
            .append(matchedPrevChecksum, that.matchedPrevChecksum)
            .append(infoFound, that.infoFound)
            .append(bitstreamFound, that.bitstreamFound)
            .append(bitstream, that.bitstream)
            .append(expectedChecksum, that.expectedChecksum)
            .append(currentChecksum, that.currentChecksum)
            .append(processStartDate, that.processStartDate)
            .append(processEndDate, that.processEndDate)
            .append(checksumAlgorithm, that.checksumAlgorithm)
            .append(checksumResult, that.checksumResult)
            .isEquals();
    }

    @Override
    public int hashCode() {
        return new HashCodeBuilder(17, 37)
            .append(bitstream)
            .append(toBeProcessed)
            .append(expectedChecksum)
            .append(currentChecksum)
            .append(processStartDate)
            .append(processEndDate)
            .append(checksumAlgorithm)
            .append(matchedPrevChecksum)
            .append(infoFound)
            .append(bitstreamFound)
            .append(checksumResult)
            .toHashCode();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy