Class ContentUrlKey
- java.lang.Object
-
- org.alfresco.service.cmr.repository.ContentUrlKey
-
- All Implemented Interfaces:
Serializable
public class ContentUrlKey extends Object implements Serializable
- Author:
- sglover
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ContentUrlKey()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getAlgorithm()
ByteBuffer
getEncryptedKeyBytes()
Integer
getKeySize()
String
getMasterKeyAlias()
String
getMasterKeystoreId()
Long
getUnencryptedFileSize()
void
setAlgorithm(String algorithm)
void
setEncryptedKeyBytes(ByteBuffer encryptedKeyBytes)
void
setKeySize(Integer keySize)
void
setMasterKeyAlias(String masterKeyAlias)
void
setMasterKeystoreId(String masterKeystoreId)
void
setUnencryptedFileSize(Long unencryptedFileSize)
-
-
-
Method Detail
-
getEncryptedKeyBytes
public ByteBuffer getEncryptedKeyBytes()
-
setEncryptedKeyBytes
public void setEncryptedKeyBytes(ByteBuffer encryptedKeyBytes)
-
getUnencryptedFileSize
public Long getUnencryptedFileSize()
-
setUnencryptedFileSize
public void setUnencryptedFileSize(Long unencryptedFileSize)
-
setKeySize
public void setKeySize(Integer keySize)
-
getKeySize
public Integer getKeySize()
-
getAlgorithm
public String getAlgorithm()
-
setAlgorithm
public void setAlgorithm(String algorithm)
-
getMasterKeystoreId
public String getMasterKeystoreId()
-
setMasterKeystoreId
public void setMasterKeystoreId(String masterKeystoreId)
-
getMasterKeyAlias
public String getMasterKeyAlias()
-
setMasterKeyAlias
public void setMasterKeyAlias(String masterKeyAlias)
-
-