Package com.amazonaws.services.s3.model
Interface EncryptionMaterialsAccessor
-
- All Known Subinterfaces:
EncryptionMaterialsProvider
- All Known Implementing Classes:
KMSEncryptionMaterialsProvider
,SimpleMaterialProvider
,StaticEncryptionMaterialsProvider
public interface EncryptionMaterialsAccessor
Retrieves encryption materials from some source.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description EncryptionMaterials
getEncryptionMaterials(Map<String,String> materialsDescription)
Retrieves encryption materials matching the specified description from some source.
-
-
-
Method Detail
-
getEncryptionMaterials
EncryptionMaterials getEncryptionMaterials(Map<String,String> materialsDescription)
Retrieves encryption materials matching the specified description from some source.- Parameters:
materialsDescription
- A Mapwhose key-value pairs describe an encryption materials object - Returns:
- The encryption materials that match the description, or null if no matching encryption materials found.
-
-