Class SecuredUserGroupFactory
- java.lang.Object
-
- jetbrains.buildServer.groups.impl.SecuredUserGroupFactory
-
- All Implemented Interfaces:
UserGroupFactory
public class SecuredUserGroupFactory extends Object implements UserGroupFactory
- Author:
- Maxim Podkolzine (maxim.podkolzine@jetbrains.com)
-
-
Constructor Summary
Constructors Constructor Description SecuredUserGroupFactory()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description UserGroupEx
createAllUsersGroup(String key, String name, String description)
UserGroupEx
createUserGroup(String key, String name, String description)
void
setDelegate(UserGroupFactory delegate)
void
setProjectManager(ProjectManagerEx projectManager)
void
setSecurityContext(SecurityContextEx securityContext)
-
-
-
Method Detail
-
setDelegate
public void setDelegate(@NotNull UserGroupFactory delegate)
-
setSecurityContext
public void setSecurityContext(@NotNull SecurityContextEx securityContext)
-
setProjectManager
public void setProjectManager(@NotNull ProjectManagerEx projectManager)
-
createUserGroup
public UserGroupEx createUserGroup(@NotNull String key, @NotNull String name, @NotNull String description)
- Specified by:
createUserGroup
in interfaceUserGroupFactory
-
createAllUsersGroup
public UserGroupEx createAllUsersGroup(@NotNull String key, @NotNull String name, @NotNull String description)
- Specified by:
createAllUsersGroup
in interfaceUserGroupFactory
-
-