| com.atlassian.jira.security.roles.DefaultRoleActors |
Known Indirect Subclasses
|
@PublicApi
Clients of @PublicApi can expect
that programs compiled against a given version will remain binary compatible with later versions of the
@PublicApi as per each product's API policy as long as the client does not implement/extend
@PublicApi interfaces or classes (refer to each product's API policy for the exact
guarantee---usually binary compatibility is guaranteed at least across minor versions).
@PublicApi interfaces and classes are not designed to be implemented or extended by clients,
we may perform certain types of binary-incompatible changes to these classes and interfaces, but these will not
affect well-behaved clients that do not extend/implement these types (in general, only classes and interfaces
annotated with @PublicSpi are safe to extend/implement).
This interface defines the association between a ProjectRole and a collection of default Actors. Actors associated with a ProjectRole in this way will be used to populate the ProjectRoleActors association when a new project is created within JIRA.
Note: implementations must be immutable.| Public Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
Add the RoleActor to the contained set of RoleActors and return a new DefaultRoleActors with the modified set
| |||||||||||
Add the collection of RoleActors to the contained set of RoleActors and return a new DefaultRoleActors with the
modified set
| |||||||||||
This method is deprecated.
Use contains(ApplicationUser user) instead. Since v6.0.
| |||||||||||
Does the collection of RoleActor instances contain the specified user.
| |||||||||||
Remove the RoleActor from the contained set of RoleActors and return a new DefaultRoleActors with the modified
set
| |||||||||||
Remove the RoleActor from the contained set of RoleActors and return a new DefaultRoleActors with the modified
set
| |||||||||||
Add the RoleActor to the contained set of RoleActors and return a new DefaultRoleActors with the modified set
| roleActor | the RoleActor to add |
|---|
Add the collection of RoleActors to the contained set of RoleActors and return a new DefaultRoleActors with the modified set
| roleActors | the collection RoleActor to add |
|---|
This method is deprecated.
Use contains(ApplicationUser user) instead. Since v6.0.
Does the collection of RoleActor instances contain the specified user.
| user | the application user to check if they are contained |
|---|
Does the collection of RoleActor instances contain the specified user.
| user | the application user to check if they are contained |
|---|
Remove the RoleActor from the contained set of RoleActors and return a new DefaultRoleActors with the modified set
| roleActor | the RoleActor to remove |
|---|
Remove the RoleActor from the contained set of RoleActors and return a new DefaultRoleActors with the modified set
| roleActors | the RoleActor to remove |
|---|