public interface RoleContributor
| Modifier and Type | Method and Description |
|---|---|
default java.util.List<java.lang.Class<? extends GlobalFunction>> |
getGlobalFunctionContributionsForGlobalRole(java.lang.String role)
Gets the list of functions to contribute to this global role.
|
default java.util.List<java.lang.Class<? extends ProjectFunction>> |
getProjectFunctionContributionsForGlobalRole(java.lang.String role)
Gets the list of project functions to contribute to this global role.
|
default java.util.List<java.lang.Class<? extends ProjectFunction>> |
getProjectFunctionContributionsForProjectRole(java.lang.String role)
Gets the list of functions to contribute to this project role.
|
default java.util.List<java.lang.Class<? extends GlobalFunction>> getGlobalFunctionContributionsForGlobalRole(java.lang.String role)
role - Role to contribute toGlobalFunction to add - none of them must be annotated with the
CoreFunction annotation.default java.util.List<java.lang.Class<? extends ProjectFunction>> getProjectFunctionContributionsForGlobalRole(java.lang.String role)
role - Role to contribute toProjectFunction to add - none of them must be annotated with the
CoreFunction annotation.default java.util.List<java.lang.Class<? extends ProjectFunction>> getProjectFunctionContributionsForProjectRole(java.lang.String role)
role - Role to contribute toProjectFunction to add - none of them must be annotated with the
CoreFunction annotation.