Package com.azure.storage.blob.models
Class BlobSignedIdentifier
- java.lang.Object
-
- com.azure.storage.blob.models.BlobSignedIdentifier
-
public final class BlobSignedIdentifier extends Object
signed identifier.
-
-
Constructor Summary
Constructors Constructor Description BlobSignedIdentifier()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description BlobAccessPolicygetAccessPolicy()Get the accessPolicy property: An Access policy.StringgetId()Get the id property: a unique id.BlobSignedIdentifiersetAccessPolicy(BlobAccessPolicy accessPolicy)Set the accessPolicy property: An Access policy.BlobSignedIdentifiersetId(String id)Set the id property: a unique id.
-
-
-
Method Detail
-
getId
public String getId()
Get the id property: a unique id.- Returns:
- the id value.
-
setId
public BlobSignedIdentifier setId(String id)
Set the id property: a unique id.- Parameters:
id- the id value to set.- Returns:
- the BlobSignedIdentifier object itself.
-
getAccessPolicy
public BlobAccessPolicy getAccessPolicy()
Get the accessPolicy property: An Access policy.- Returns:
- the accessPolicy value.
-
setAccessPolicy
public BlobSignedIdentifier setAccessPolicy(BlobAccessPolicy accessPolicy)
Set the accessPolicy property: An Access policy.- Parameters:
accessPolicy- the accessPolicy value to set.- Returns:
- the BlobSignedIdentifier object itself.
-
-