Interface RoutingTagOperationBuilder.WithIssue
-
- Enclosing interface:
- RoutingTagOperationBuilder
public static interface RoutingTagOperationBuilder.WithIssue
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interface
RoutingTagOperationBuilder.WithIssue.WithRoutingTags
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description RoutingTagOperationBuilder.WithIssue.WithRoutingTags
add(RoutingTag... routingTags)
With this method the specified routing tags will be added to the issue.RoutingTagOperationBuilder.WithIssue.WithRoutingTags
remove(RoutingTag... routingTags)
With this method the specified routing tags will be removed from the issue.RoutingTagOperationBuilder.WithIssue.WithRoutingTags
set(RoutingTag... routingTags)
With this method the specified routing tags will be assigned to the issue.
-
-
-
Method Detail
-
set
RoutingTagOperationBuilder.WithIssue.WithRoutingTags set(RoutingTag... routingTags) throws ValidationException
With this method the specified routing tags will be assigned to the issue. All other previously assigned routing tags will be removed from the issue.- Parameters:
routingTags
- the routing tags to be assigned to the issue- Returns:
- the RoutingTagOperationBuilder.WithIssue.WithRoutingTags
- Throws:
ValidationException
- if the routing tags are invalid or the issue has an inappropriate status.- Since:
- 12.1
-
add
RoutingTagOperationBuilder.WithIssue.WithRoutingTags add(RoutingTag... routingTags) throws ValidationException
With this method the specified routing tags will be added to the issue. Any existing routing tag assignments for the issue will not be affected.- Parameters:
routingTags
- the routing tags to be added to the issue- Returns:
- the RoutingTagOperationBuilder.WithIssue.WithRoutingTags
- Throws:
ValidationException
- if the routing tags are invalid or the issue has an inappropriate status.- Since:
- 12.1
-
remove
RoutingTagOperationBuilder.WithIssue.WithRoutingTags remove(RoutingTag... routingTags) throws ValidationException
With this method the specified routing tags will be removed from the issue.- Parameters:
routingTags
- the routing tags to be removed from the issue- Returns:
- the RoutingTagOperationBuilder.WithIssue.WithRoutingTags
- Throws:
ValidationException
- if the routing tags are invalid or the issue has an inappropriate status.- Since:
- 12.1
-
-