Interface IssueRoutingTagOperationResult
-
- All Superinterfaces:
IssueOperationResult
,IssueProvider
,OperationResult
- All Known Subinterfaces:
AutoRoutingTagOperationResult
,SupervisorRoutingTagOperationResult
public interface IssueRoutingTagOperationResult extends IssueOperationResult
This interface represents the result of a successful issue routing tag operation.
- Since:
- 12.1
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.Set<RoutingTag>
getRoutingTagsAdded()
java.util.Set<RoutingTag>
getRoutingTagsRemoved()
-
Methods inherited from interface com.novomind.ecom.api.iagent.provider.IssueProvider
getIssue
-
-
-
-
Method Detail
-
getRoutingTagsAdded
java.util.Set<RoutingTag> getRoutingTagsAdded()
- Returns:
- the routing tags that have been added by this operation as unmodifiable set
- Since:
- 12.1
-
getRoutingTagsRemoved
java.util.Set<RoutingTag> getRoutingTagsRemoved()
- Returns:
- the routing tags that have been removed by this operation as unmodifiable set
- Since:
- 12.1
-
-