Uses of Class
org.gitlab4j.api.models.AccessRequest
-
Packages that use AccessRequest Package Description org.gitlab4j.api -
-
Uses of AccessRequest in org.gitlab4j.api
Methods in org.gitlab4j.api that return AccessRequest Modifier and Type Method Description AccessRequestGroupApi. approveAccessRequest(Object groupIdOrPath, Integer userId, AccessLevel accessLevel)Approve access for the specified user to the specified group.AccessRequestProjectApi. approveAccessRequest(Object projectIdOrPath, Integer userId, AccessLevel accessLevel)Approve access for the specified user to the specified project.AccessRequestGroupApi. requestAccess(Object groupIdOrPath)Requests access for the authenticated user to the specified group.AccessRequestProjectApi. requestAccess(Object projectIdOrPath)Requests access for the authenticated user to the specified project.Methods in org.gitlab4j.api that return types with arguments of type AccessRequest Modifier and Type Method Description List<AccessRequest>GroupApi. getAccessRequests(Object groupIdOrPath)Get a List of the group access requests viewable by the authenticated user.Pager<AccessRequest>GroupApi. getAccessRequests(Object groupIdOrPath, int itemsPerPage)Get a Pager of the group access requests viewable by the authenticated user.List<AccessRequest>ProjectApi. getAccessRequests(Object projectIdOrPath)Get a List of the project access requests viewable by the authenticated user.Pager<AccessRequest>ProjectApi. getAccessRequests(Object projectIdOrPath, int itemsPerPage)Get a Pager of the project access requests viewable by the authenticated user.Stream<AccessRequest>GroupApi. getAccessRequestsStream(Object groupIdOrPath)Get a Stream of the group access requests viewable by the authenticated user.Stream<AccessRequest>ProjectApi. getAccessRequestsStream(Object projectIdOrPath)Get a Stream of the project access requests viewable by the authenticated user.
-