Uses of Class
org.gitlab4j.api.models.ApprovalRule
Package | Description |
---|---|
org.gitlab4j.api | |
org.gitlab4j.api.models |
-
Uses of ApprovalRule in org.gitlab4j.api
Methods in org.gitlab4j.api that return ApprovalRule Modifier and Type Method Description ApprovalRule
MergeRequestApi. createApprovalRule(Object projectIdOrPath, Integer mergeRequestIid, Integer projectRuleId, ApprovalRuleParams params)
Create a merge request level approval rule.ApprovalRule
ProjectApi. createApprovalRule(Object projectIdOrPath, ApprovalRuleParams params)
Create a project-level approval rule.ApprovalRule
MergeRequestApi. updateApprovalRule(Object projectIdOrPath, Integer mergeRequestIid, Integer approvalRuleId, ApprovalRuleParams params)
Update the specified the merge request level approval rule.ApprovalRule
ProjectApi. updateApprovalRule(Object projectIdOrPath, Integer approvalRuleId, ApprovalRuleParams params)
Update the specified the project-level approval rule.Methods in org.gitlab4j.api that return types with arguments of type ApprovalRule Modifier and Type Method Description List<ApprovalRule>
MergeRequestApi. getApprovalRules(Object projectIdOrPath, Integer mergeRequestIid)
Get a list of the merge request level approval rules.Pager<ApprovalRule>
MergeRequestApi. getApprovalRules(Object projectIdOrPath, Integer mergeRequestIid, int itemsPerPage)
Get a Pager of the merge request level approval rules.List<ApprovalRule>
ProjectApi. getApprovalRules(Object projectIdOrPath)
Get a list of the project-level approval rules.Pager<ApprovalRule>
ProjectApi. getApprovalRules(Object projectIdOrPath, int itemsPerPage)
Get a Pager of the project-level approval rules.Stream<ApprovalRule>
MergeRequestApi. getApprovalRulesStream(Object projectIdOrPath, Integer mergeRequestIid)
Get a Stream of the merge request level approval rules.Stream<ApprovalRule>
ProjectApi. getApprovalRulesStream(Object projectIdOrPath)
Get a Stream of the project-level approval rules. -
Uses of ApprovalRule in org.gitlab4j.api.models
Methods in org.gitlab4j.api.models that return ApprovalRule Modifier and Type Method Description ApprovalRule
ApprovalRule. getSourceRule()
Methods in org.gitlab4j.api.models that return types with arguments of type ApprovalRule Modifier and Type Method Description List<ApprovalRule>
ApprovalState. getRules()
Methods in org.gitlab4j.api.models with parameters of type ApprovalRule Modifier and Type Method Description void
ApprovalRule. setSourceRule(ApprovalRule sourceRule)
Method parameters in org.gitlab4j.api.models with type arguments of type ApprovalRule Modifier and Type Method Description void
ApprovalState. setRules(List<ApprovalRule> rules)