org.gitlab4j.api.models.GroupParams Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gitlab4j-api Show documentation
Show all versions of gitlab4j-api Show documentation
GitLab4J-API (gitlab4j-api) provides a full featured Java client library for working with GitLab repositories and servers via the GitLab REST API.
package org.gitlab4j.api.models;
import org.gitlab4j.api.GitLabApiForm;
/**
* This class is utilized by the {@link org.gitlab4j.api.GroupApi#createGroup(GroupParams)}
* and {@link org.gitlab4j.api.GroupApi#updateGroup(Object, GroupParams)} methods to set
* the parameters for the call to the GitLab API.
*/
public class GroupParams {
/**
* Constant to specify the project_creation_level for the group.
*/
public enum ProjectCreationLevel {
NOONE, DEVELOPER, MAINTAINER;
public String toString() {
return (name().toLowerCase());
}
}
/**
* Constant to specify the subgroup_creation_level for the group.
*/
public enum SubgroupCreationLevel {
OWNER, MAINTAINER;
public String toString() {
return (name().toLowerCase());
}
}
public enum DefaultBranchProtectionLevel {
NOT_PROTECTED(0),
PARTIALLY_PROTECTED(1),
FULLY_PROTECTED(2);
private final int value;
private DefaultBranchProtectionLevel(int value) {
this.value = value;
}
public String toString() {
return Integer.toString(value);
}
}
private String name;
private String path;
private String description;
private String visibility;
private Boolean shareWithGroupLock;
private Boolean requireTwoFactorAuthentication;
private Integer twoFactorGracePeriod;
private ProjectCreationLevel projectCreationLevel;
private Boolean autoDevopsEnabled;
private SubgroupCreationLevel subgroupCreationLevel;
private Boolean emailsDisabled;
private Boolean lfsEnabled;
private Boolean requestAccessEnabled;
private Long parentId;
private Integer sharedRunnersMinutesLimit;
private Integer extraSharedRunnersMinutesLimit;
private DefaultBranchProtectionLevel defaultBranchProtection;
private Boolean membershipLock;
private Long fileTemplateProjectId;
/**
* The parent group ID for creating nested group. For create only.
*
* @param parentId the parent group ID for creating nested group
* @return this GroupParms instance
*/
public GroupParams withParentId(Long parentId) {
this.parentId = parentId;
return (this);
}
/**
* Prevent adding new members to project membership within this group. For update only.
*
* @param membershipLock if true, prevent adding new members to project membership within this group
* @return this GroupParms instance
*/
public GroupParams withMembershipLock(Boolean membershipLock) {
this.membershipLock = membershipLock;
return (this);
}
/**
* The ID of a project to load custom file templates from. For update only.
*
* @param fileTemplateProjectId the ID of a project to load custom file templates from
* @return this GroupParms instance
*/
public GroupParams withFileTemplateProjectId(Long fileTemplateProjectId) {
this.fileTemplateProjectId = fileTemplateProjectId;
return (this);
}
public GroupParams withName(String name) {
this.name = name;
return (this);
}
public GroupParams withPath(String path) {
this.path = path;
return (this);
}
public GroupParams withDescription(String description) {
this.description = description;
return (this);
}
public GroupParams withVisibility(String visibility) {
this.visibility = visibility;
return (this);
}
public GroupParams withShareWithGroupLock(Boolean shareWithGroupLock) {
this.shareWithGroupLock = shareWithGroupLock;
return (this);
}
public GroupParams withRequireTwoFactorAuthentication(Boolean requireTwoFactorAuthentication) {
this.requireTwoFactorAuthentication = requireTwoFactorAuthentication;
return (this);
}
public GroupParams withTwoFactorGracePeriod(Integer twoFactorGracePeriod) {
this.twoFactorGracePeriod = twoFactorGracePeriod;
return (this);
}
public GroupParams withProjectCreationLevel(ProjectCreationLevel projectCreationLevel) {
this.projectCreationLevel = projectCreationLevel;
return (this);
}
public GroupParams withAutoDevopsEnabled(Boolean autoDevopsEnabled) {
this.autoDevopsEnabled = autoDevopsEnabled;
return (this);
}
public GroupParams withSubgroupCreationLevel(SubgroupCreationLevel subgroupCreationLevel) {
this.subgroupCreationLevel = subgroupCreationLevel;
return (this);
}
public GroupParams withEmailsDisabled(Boolean emailsDisabled) {
this.emailsDisabled = emailsDisabled;
return (this);
}
public GroupParams withLfsEnabled(Boolean lfsEnabled) {
this.lfsEnabled = lfsEnabled;
return (this);
}
public GroupParams withRequestAccessEnabled(Boolean requestAccessEnabled) {
this.requestAccessEnabled = requestAccessEnabled;
return (this);
}
public GroupParams withSharedRunnersMinutesLimit(Integer sharedRunnersMinutesLimit) {
this.sharedRunnersMinutesLimit = sharedRunnersMinutesLimit;
return (this);
}
public GroupParams withExtraSharedRunnersMinutesLimit(Integer extraSharedRunnersMinutesLimit) {
this.extraSharedRunnersMinutesLimit = extraSharedRunnersMinutesLimit;
return (this);
}
public GroupParams withDefaultBranchProtection(DefaultBranchProtectionLevel defaultBranchProtection) {
this.defaultBranchProtection = defaultBranchProtection;
return (this);
}
/**
* Get the form params for a group create oir update call.
*
* @param isCreate set to true for a create group call, false for update
* @return a GitLabApiForm instance holding the parameters for the group create or update operation
* @throws RuntimeException if required parameters are missing
*/
public GitLabApiForm getForm(boolean isCreate) {
GitLabApiForm form = new GitLabApiForm()
.withParam("name", name, isCreate)
.withParam("path", path, isCreate)
.withParam("description", description)
.withParam("visibility", visibility)
.withParam("share_with_group_lock", shareWithGroupLock)
.withParam("require_two_factor_authentication", requireTwoFactorAuthentication)
.withParam("two_factor_grace_period", twoFactorGracePeriod)
.withParam("project_creation_level", projectCreationLevel)
.withParam("auto_devops_enabled", autoDevopsEnabled)
.withParam("subgroup_creation_level", subgroupCreationLevel)
.withParam("emails_disabled", emailsDisabled)
.withParam("lfs_enabled", lfsEnabled)
.withParam("request_access_enabled", requestAccessEnabled)
.withParam("shared_runners_minutes_limit", sharedRunnersMinutesLimit)
.withParam("extra_shared_runners_minutes_limit", extraSharedRunnersMinutesLimit)
.withParam("default_branch_protection", defaultBranchProtection);
if (isCreate) {
form.withParam("parent_id", parentId);
} else {
form.withParam("membership_lock", membershipLock)
.withParam("file_template_project_id", fileTemplateProjectId);
}
return (form);
}
}