Uses of Class
org.fcrepo.config.DigestAlgorithm
-
Packages that use DigestAlgorithm Package Description org.fcrepo.config org.fcrepo.persistence.common org.fcrepo.persistence.ocfl.impl -
-
Uses of DigestAlgorithm in org.fcrepo.config
Methods in org.fcrepo.config that return DigestAlgorithm Modifier and Type Method Description static DigestAlgorithm
DigestAlgorithm. fromAlgorithm(String alg)
Return enum value for the provided algorithmstatic DigestAlgorithm
DigestAlgorithm. fromScheme(String argScheme)
Return enum value for the provided scheme (e.g.DigestAlgorithm
OcflPropsConfig. getDefaultDigestAlgorithm()
static DigestAlgorithm
DigestAlgorithm. valueOf(String name)
Returns the enum constant of this type with the specified name.static DigestAlgorithm[]
DigestAlgorithm. values()
Returns an array containing the constants of this enum type, in the order they are declared. -
Uses of DigestAlgorithm in org.fcrepo.persistence.common
Methods in org.fcrepo.persistence.common with parameters of type DigestAlgorithm Modifier and Type Method Description String
MultiDigestInputStreamWrapper. getDigest(DigestAlgorithm alg)
Get the digest calculated for the provided algorithm -
Uses of DigestAlgorithm in org.fcrepo.persistence.ocfl.impl
Methods in org.fcrepo.persistence.ocfl.impl with parameters of type DigestAlgorithm Modifier and Type Method Description static edu.wisc.library.ocfl.api.MutableOcflRepository
OcflPersistentStorageUtils. createFilesystemRepository(Path ocflStorageRootDir, Path ocflWorkDir, DigestAlgorithm algorithm, boolean ocflUpgradeOnWrite, boolean verifyInventory)
Create a new ocfl repository backed by the filesystemstatic edu.wisc.library.ocfl.api.MutableOcflRepository
OcflPersistentStorageUtils. createS3Repository(DataSource dataSource, software.amazon.awssdk.services.s3.S3Client s3Client, String bucket, String prefix, Path ocflWorkDir, DigestAlgorithm algorithm, boolean withDb, boolean ocflUpgradeOnWrite, boolean verifyInventory)
Create a new ocfl repository backed by s3static edu.wisc.library.ocfl.api.model.DigestAlgorithm
OcflPersistentStorageUtils. translateFedoraDigestToOcfl(DigestAlgorithm fcrepoAlg)
Translates the provided fedora digest algorithm enum into a OCFL client digest algorithm
-