Interface Queue.UpdateStages.WithAuthorizationRule
-
- All Known Subinterfaces:
Queue.Update
- Enclosing interface:
- Queue.UpdateStages
public static interface Queue.UpdateStages.WithAuthorizationRuleThe stage of the queue definition allowing to add an authorization rule for accessing the queue.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Queue.UpdatewithNewListenRule(String name)Creates a listen authorization rule for the queue.Queue.UpdatewithNewManageRule(String name)Creates a manage authorization rule for the queue.Queue.UpdatewithNewSendRule(String name)Creates a send authorization rule for the queue.Queue.UpdatewithoutAuthorizationRule(String name)Removes an authorization rule for the queue.
-
-
-
Method Detail
-
withNewSendRule
Queue.Update withNewSendRule(String name)
Creates a send authorization rule for the queue.- Parameters:
name- rule name- Returns:
- next stage of the queue update
-
withNewListenRule
Queue.Update withNewListenRule(String name)
Creates a listen authorization rule for the queue.- Parameters:
name- rule name- Returns:
- next stage of the queue update
-
withNewManageRule
Queue.Update withNewManageRule(String name)
Creates a manage authorization rule for the queue.- Parameters:
name- rule name- Returns:
- next stage of the queue update
-
withoutAuthorizationRule
Queue.Update withoutAuthorizationRule(String name)
Removes an authorization rule for the queue.- Parameters:
name- rule name- Returns:
- next stage of the queue update
-
-