Class ApplicationRoleGroupEvent

java.lang.Object
com.atlassian.jira.application.ApplicationRoleGroupEvent

public class ApplicationRoleGroupEvent extends Object
Event fired when groups are added to or removed from application roles.
Since:
v10.3.6
  • Constructor Details

    • ApplicationRoleGroupEvent

      public ApplicationRoleGroupEvent(@Nonnull Set<com.atlassian.application.api.ApplicationKey> affectedApplications, @Nonnull Set<String> addedGroups, @Nonnull Set<String> removedGroups)
  • Method Details

    • getAffectedApplications

      @Nonnull public Set<com.atlassian.application.api.ApplicationKey> getAffectedApplications()
      Get the keys of applications whose roles were affected by the group changes.
      Returns:
      the keys of affected applications
    • getAddedGroups

      @Nonnull public Set<String> getAddedGroups()
      Get the names of groups that were added to the application roles.
      Returns:
      the names of added groups
    • getRemovedGroups

      @Nonnull public Set<String> getRemovedGroups()
      Get the names of groups that were removed from the application roles.
      Returns:
      the names of removed groups