SharedAccessQueuePermissions Enum

  • java.lang.Object
    • java.lang.Enum<SharedAccessQueuePermissions>
      • com.microsoft.azure.storage.queue.SharedAccessQueuePermissions

public enum SharedAccessQueuePermissions

Specifies the set of possible permissions for a shared access queue policy.

Fields

ADD

Permission to add messages granted.

NONE

No shared access granted.

PROCESSMESSAGES

Permission to get and delete messages granted.

READ

Permission to peek messages and get queue metadata granted.

UPDATE

Permissions to update messages granted.

Methods

fromByte(final byte value)

protected static EnumSet fromByte(final byte value)

Returns the enum set representing the shared access permissions for the specified byte value.

Parameters

value
final byte
The byte value to convert to the corresponding enum set.

Returns

A java.util.EnumSet object that contains the SharedAccessQueuePermissions values corresponding to the specified byte value.

Applies to