org.gitlab.api.models.GitlabPermission Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-gitlab-api Show documentation
Show all versions of java-gitlab-api Show documentation
A Java wrapper for the Gitlab Git Hosting Server API
package org.gitlab.api.models;
import com.fasterxml.jackson.annotation.JsonProperty;
public class GitlabPermission {
@JsonProperty("project_access")
private GitlabProjectAccessLevel projectAccess;
@JsonProperty("group_access")
private GitlabProjectAccessLevel groupAccess;
public GitlabProjectAccessLevel getProjectAccess() {
return projectAccess;
}
public GitlabProjectAccessLevel getProjectGroupAccess() {
return groupAccess;
}
}