Uses of Class
org.miaixz.bus.gitlab.models.Board
Packages that use Board
-
Uses of Board in org.miaixz.bus.gitlab
Methods in org.miaixz.bus.gitlab that return BoardModifier and TypeMethodDescriptionBoardsApi.createGroupIssueBoard(Object groupIdOrPath, String name) Creates a new Issue Board.BoardsApi.createProjectIssueBoard(Object projectIdOrPath, String name) Creates a new Issue Board.BoardsApi.getGroupEpicBoard(Object groupIdOrPath, Long boardId) Get a single epic board.BoardsApi.getGroupIssueBoard(Object groupIdOrPath, Long boardId) Get a single issue board.BoardsApi.getProjectIssueBoard(Object projectIdOrPath, Long boardId) Get a single issue board.BoardsApi.updateGroupIssueBoard(Object groupIdOrPath, Long boardId, String name, Boolean hideBacklogList, Boolean hideClosedList, Long assigneeId, Long milestoneId, String labels, Integer weight) Updates an existing Issue Board.BoardsApi.updateProjectIssueBoard(Object projectIdOrPath, Long boardId, String name, Boolean hideBacklogList, Boolean hideClosedList, Long assigneeId, Long milestoneId, String labels, Integer weight) Updates an existing Issue Board.Methods in org.miaixz.bus.gitlab that return types with arguments of type BoardModifier and TypeMethodDescriptionBoardsApi.getGroupEpicBoards(Object groupIdOrPath) Lists epic boards in the given group.BoardsApi.getGroupEpicBoards(Object groupIdOrPath, int itemsPerPage) Get a Pager of all epic boards for the specified group.BoardsApi.getGroupEpicBoards(Object groupIdOrPath, int page, int perPage) Get all epic boards for the specified group using the specified page and per page settingBoardsApi.getGroupEpicBoardsStream(Object groupIdOrPath) Get a Stream of all epic boards for the specified group.BoardsApi.getGroupIssueBoards(Object groupIdOrPath) Lists Issue Boards in the given group.BoardsApi.getGroupIssueBoards(Object groupIdOrPath, int itemsPerPage) Get a Pager of all issue boards for the specified group.BoardsApi.getGroupIssueBoards(Object groupIdOrPath, int page, int perPage) Get all issue boards for the specified group using the specified page and per page settingBoardsApi.getGroupIssueBoardsStream(Object groupIdOrPath) Get a Stream of all issue boards for the specified group.BoardsApi.getOptionalGroupEpicBoard(Object groupIdOrPath, Long boardId) Get an epic board as an Optional instance.BoardsApi.getOptionalGroupIssueBoard(Object groupIdOrPath, Long boardId) Get an issue board as an Optional instance.BoardsApi.getOptionalProjectIssueBoard(Object projectIdOrPath, Long boardId) Get an issue board as an Optional instance.BoardsApi.getProjectIssueBoards(Object projectIdOrPath) Lists Issue Boards in the given project.BoardsApi.getProjectIssueBoards(Object projectIdOrPath, int itemsPerPage) Get a Pager of all issue boards for the specified project.BoardsApi.getProjectIssueBoards(Object projectIdOrPath, int page, int perPage) Get all issue boards for the specified project using the specified page and per page settingBoardsApi.getProjectIssueBoardsStream(Object projectIdOrPath) Get a Stream of all issue boards for the specified project.