Uses of Class
org.gitlab4j.api.models.Group
-
Packages that use Group Package Description org.gitlab4j.api org.gitlab4j.api.models -
-
Uses of Group in org.gitlab4j.api
Methods in org.gitlab4j.api that return Group Modifier and Type Method Description GroupGroupApi. addGroup(String name, String path)Creates a new project group.GroupGroupApi. addGroup(String name, String path, String description, Boolean membershipLock, Boolean shareWithGroupLock, Visibility visibility, Boolean lfsEnabled, Boolean requestAccessEnabled, Integer parentId, Integer sharedRunnersMinutesLimit)Deprecated.Will be removed in version 5.0, replaced byGroupApi.addGroup(String, String, String, Visibility, Boolean, Boolean, Integer)GroupGroupApi. addGroup(String name, String path, String description, Visibility visibility, Boolean lfsEnabled, Boolean requestAccessEnabled, Integer parentId)Creates a new project group.GroupGroupApi. addGroup(Group group)GroupGroupApi. getGroup(Object groupIdOrPath)Get all details of a group.GroupGroupApi. updateGroup(Object groupIdOrPath, String name, String path, String description, Boolean membershipLock, Boolean shareWithGroupLock, Visibility visibility, Boolean lfsEnabled, Boolean requestAccessEnabled, Integer parentId, Integer sharedRunnersMinutesLimit)Deprecated.Will be removed in version 5.0, replaced byGroupApi.updateGroup(Object, String, String, String, Visibility, Boolean, Boolean, Integer)GroupGroupApi. updateGroup(Object groupIdOrPath, String name, String path, String description, Visibility visibility, Boolean lfsEnabled, Boolean requestAccessEnabled, Integer parentId)Updates a project group.GroupGroupApi. updateGroup(Group group)Updates a project group.Methods in org.gitlab4j.api that return types with arguments of type Group Modifier and Type Method Description List<Group>GroupApi. getGroups()Get a list of groups.Pager<Group>GroupApi. getGroups(int itemsPerPage)Get a Pager of groups.List<Group>GroupApi. getGroups(int page, int perPage)Get a list of groups (As user: my groups, as admin: all groups) and in the specified page range.List<Group>GroupApi. getGroups(String search)Get all groups that match your string in their name or path.Pager<Group>GroupApi. getGroups(String search, int itemsPerPage)Get all groups that match your string in their name or path.List<Group>GroupApi. getGroups(String search, int page, int perPage)Get all groups that match your string in their name or path.List<Group>GroupApi. getGroups(GroupFilter filter)Get a list of visible groups for the authenticated user using the provided filter.Pager<Group>GroupApi. getGroups(GroupFilter filter, int itemsPerPage)Get a Pager of visible groups for the authenticated user using the provided filter.Stream<Group>GroupApi. getGroupsStream()Get a Stream of groups.Stream<Group>GroupApi. getGroupsStream(String search)Get all groups that match your string in their name or path as a Stream.Stream<Group>GroupApi. getGroupsStream(GroupFilter filter)Get a Stream of visible groups for the authenticated user using the provided filter.Optional<Group>GroupApi. getOptionalGroup(Object groupIdOrPath)Get all details of a group as an Optional instance.List<Group>GroupApi. getSubGroups(Object groupIdOrPath)Get a list of visible direct subgroups in this group.Pager<Group>GroupApi. getSubGroups(Object groupIdOrPath, int itemsPerPage)Get a Pager of visible direct subgroups in this group.List<Group>GroupApi. getSubGroups(Object groupIdOrPath, List<Integer> skipGroups, Boolean allAvailable, String search, Constants.GroupOrderBy orderBy, Constants.SortOrder sortOrder, Boolean statistics, Boolean owned)Get a list of visible direct subgroups in this group.Pager<Group>GroupApi. getSubGroups(Object groupIdOrPath, List<Integer> skipGroups, Boolean allAvailable, String search, Constants.GroupOrderBy orderBy, Constants.SortOrder sortOrder, Boolean statistics, Boolean owned, int itemsPerPage)Get a Pager of visible direct subgroups in this group.List<Group>GroupApi. getSubGroups(Object groupIdOrPath, List<Integer> skipGroups, Boolean allAvailable, String search, Constants.GroupOrderBy orderBy, Constants.SortOrder sortOrder, Boolean statistics, Boolean owned, int page, int perPage)Get a list of visible direct subgroups in this group.Stream<Group>GroupApi. getSubGroupsStream(Object groupIdOrPath)Get a Stream of visible direct subgroups in this group.Stream<Group>GroupApi. getSubGroupsStream(Object groupIdOrPath, List<Integer> skipGroups, Boolean allAvailable, String search, Constants.GroupOrderBy orderBy, Constants.SortOrder sortOrder, Boolean statistics, Boolean owned)Get a Stream of visible direct subgroups in this group.Methods in org.gitlab4j.api with parameters of type Group Modifier and Type Method Description GroupGroupApi. addGroup(Group group)GroupGroupApi. updateGroup(Group group)Updates a project group. -
Uses of Group in org.gitlab4j.api.models
Methods in org.gitlab4j.api.models that return Group Modifier and Type Method Description GroupGroup. withAvatarUrl(String avatarUrl)GroupGroup. withDescription(String description)GroupGroup. withFullName(String fullName)GroupGroup. withFullPath(String fullPath)GroupGroup. withId(Integer id)GroupGroup. withlfsEnabled(boolean lfsEnabled)GroupGroup. withName(String name)GroupGroup. withParentId(Integer parentId)GroupGroup. withPath(String path)GroupGroup. withProjects(List<Project> projects)GroupGroup. withRequestAccessEnabled(boolean requestAccessEnabled)GroupGroup. withSharedProjects(List<Project> sharedProjects)GroupGroup. withSharedRunnersMinutesLimit(Integer minutesLimit)GroupGroup. withStatistics(Group.Statistics statistics)GroupGroup. withVisibility(Visibility visibility)GroupGroup. withWebUrl(String url)
-