Package org.nuxeo.ecm.core.blob
Class KeyStrategyDigest
- java.lang.Object
-
- org.nuxeo.ecm.core.blob.KeyStrategyDigest
-
- All Implemented Interfaces:
KeyStrategy
public class KeyStrategyDigest extends Object implements KeyStrategy
Represents computation of blob keys based on a message digest.- Since:
- 11.1
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classKeyStrategyDigest.WriteObserverDigestWrite observer computing a digest.-
Nested classes/interfaces inherited from interface org.nuxeo.ecm.core.blob.KeyStrategy
KeyStrategy.WriteObserver
-
-
Field Summary
Fields Modifier and Type Field Description StringdigestAlgorithmPatterndigestPattern-
Fields inherited from interface org.nuxeo.ecm.core.blob.KeyStrategy
VER_SEP
-
-
Constructor Summary
Constructors Constructor Description KeyStrategyDigest(String digestAlgorithm)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object obj)BlobWriteContextgetBlobWriteContext(BlobContext blobContext)Gets the write context for the given blob.StringgetDigestFromKey(String key)Gets, if possible, a digest from the key.protected static PatterngetDigestPattern(String digestAlgorithm)inthashCode()booleanisValidDigest(String key)booleanisValidKey(String key)Does the given key have the expected pattern for this strategy.booleanuseDeDuplication()Checks whether this key strategy uses de-duplication.
-
-
-
Constructor Detail
-
KeyStrategyDigest
public KeyStrategyDigest(String digestAlgorithm)
-
-
Method Detail
-
useDeDuplication
public boolean useDeDuplication()
Description copied from interface:KeyStrategyChecks whether this key strategy uses de-duplication. When de-duplication is used, two blobs with identical contents have identical keys.- Specified by:
useDeDuplicationin interfaceKeyStrategy
-
getDigestFromKey
public String getDigestFromKey(String key)
Description copied from interface:KeyStrategyGets, if possible, a digest from the key. This is not possible if the key is not derived from a digest.- Specified by:
getDigestFromKeyin interfaceKeyStrategy- Parameters:
key- the key- Returns:
- a digest, or
null
-
isValidDigest
public boolean isValidDigest(String key)
-
getBlobWriteContext
public BlobWriteContext getBlobWriteContext(BlobContext blobContext)
Description copied from interface:KeyStrategyGets the write context for the given blob.- Specified by:
getBlobWriteContextin interfaceKeyStrategy
-
isValidKey
public boolean isValidKey(String key)
Description copied from interface:KeyStrategyDoes the given key have the expected pattern for this strategy.- Specified by:
isValidKeyin interfaceKeyStrategy
-
-