Package org.dspace.checker
Class MostRecentChecksum
- java.lang.Object
-
- org.dspace.checker.MostRecentChecksum
-
- All Implemented Interfaces:
Serializable
@Entity public class MostRecentChecksum extends Object implements Serializable
Database entity representation of the most_recent_checksum table- Author:
- kevinvandevelde at atmire.com
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedMostRecentChecksum()Protected constructor, create handled by theMostRecentChecksumService
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object o)BitstreamgetBitstream()StringgetChecksumAlgorithm()ChecksumResultgetChecksumResult()StringgetCurrentChecksum()StringgetExpectedChecksum()DategetProcessEndDate()DategetProcessStartDate()inthashCode()booleanisBitstreamFound()booleanisInfoFound()booleanisMatchedPrevChecksum()booleanisToBeProcessed()voidsetBitstreamFound(boolean bitstreamFound)voidsetChecksumAlgorithm(String checksumAlgorithm)voidsetChecksumResult(ChecksumResult checksumResult)voidsetCurrentChecksum(String currentChecksum)voidsetExpectedChecksum(String expectedChecksum)voidsetInfoFound(boolean infoFound)voidsetMatchedPrevChecksum(boolean matchedPrevChecksum)voidsetProcessEndDate(Date processEndDate)voidsetProcessStartDate(Date processStartDate)voidsetToBeProcessed(boolean toBeProcessed)
-
-
-
Constructor Detail
-
MostRecentChecksum
protected MostRecentChecksum()
Protected constructor, create handled by theMostRecentChecksumService
-
-
Method Detail
-
getBitstream
public Bitstream getBitstream()
-
isToBeProcessed
public boolean isToBeProcessed()
-
setToBeProcessed
public void setToBeProcessed(boolean toBeProcessed)
-
getExpectedChecksum
public String getExpectedChecksum()
-
setExpectedChecksum
public void setExpectedChecksum(String expectedChecksum)
-
getCurrentChecksum
public String getCurrentChecksum()
-
setCurrentChecksum
public void setCurrentChecksum(String currentChecksum)
-
getProcessStartDate
public Date getProcessStartDate()
-
setProcessStartDate
public void setProcessStartDate(Date processStartDate)
-
getProcessEndDate
public Date getProcessEndDate()
-
setProcessEndDate
public void setProcessEndDate(Date processEndDate)
-
getChecksumAlgorithm
public String getChecksumAlgorithm()
-
setChecksumAlgorithm
public void setChecksumAlgorithm(String checksumAlgorithm)
-
isMatchedPrevChecksum
public boolean isMatchedPrevChecksum()
-
setMatchedPrevChecksum
public void setMatchedPrevChecksum(boolean matchedPrevChecksum)
-
getChecksumResult
public ChecksumResult getChecksumResult()
-
setChecksumResult
public void setChecksumResult(ChecksumResult checksumResult)
-
isInfoFound
public boolean isInfoFound()
-
setInfoFound
public void setInfoFound(boolean infoFound)
-
isBitstreamFound
public boolean isBitstreamFound()
-
setBitstreamFound
public void setBitstreamFound(boolean bitstreamFound)
-
-