BlobAccessPolicy Class

  • java.lang.Object
    • com.azure.storage.blob.models.BlobAccessPolicy

public final class BlobAccessPolicy

An Access policy.

Constructor Summary

Constructor Description
BlobAccessPolicy()

Creates an instance of BlobAccessPolicy class.

Method Summary

Modifier and Type Method and Description
OffsetDateTime getExpiresOn()

Get the expiresOn property: the date-time the policy expires.

String getPermissions()

Get the permissions property: the permissions for the acl policy.

OffsetDateTime getStartsOn()

Get the startsOn property: the date-time the policy is active.

BlobAccessPolicy setExpiresOn(OffsetDateTime expiresOn)

Set the expiresOn property: the date-time the policy expires.

BlobAccessPolicy setPermissions(String permissions)

Set the permissions property: the permissions for the acl policy.

BlobAccessPolicy setStartsOn(OffsetDateTime startsOn)

Set the startsOn property: the date-time the policy is active.

Methods inherited from java.lang.Object

Constructor Details

BlobAccessPolicy

public BlobAccessPolicy()

Creates an instance of BlobAccessPolicy class.

Method Details

getExpiresOn

public OffsetDateTime getExpiresOn()

Get the expiresOn property: the date-time the policy expires.

Returns:

the expiresOn value.

getPermissions

public String getPermissions()

Get the permissions property: the permissions for the acl policy.

Returns:

the permissions value.

getStartsOn

public OffsetDateTime getStartsOn()

Get the startsOn property: the date-time the policy is active.

Returns:

the startsOn value.

setExpiresOn

public BlobAccessPolicy setExpiresOn(OffsetDateTime expiresOn)

Set the expiresOn property: the date-time the policy expires.

Parameters:

expiresOn - the expiresOn value to set.

Returns:

the BlobAccessPolicy object itself.

setPermissions

public BlobAccessPolicy setPermissions(String permissions)

Set the permissions property: the permissions for the acl policy.

Parameters:

permissions - the permissions value to set.

Returns:

the BlobAccessPolicy object itself.

setStartsOn

public BlobAccessPolicy setStartsOn(OffsetDateTime startsOn)

Set the startsOn property: the date-time the policy is active.

Parameters:

startsOn - the startsOn value to set.

Returns:

the BlobAccessPolicy object itself.

Applies to