org.gitlab.api.models.GitlabApprovedBy 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;
/**
* Incomprehensibly, Gitlab packages "approved_by" in a wrapper which contains a user
* and nothing else.
*/
public class GitlabApprovedBy {
private GitlabUser user;
public GitlabUser getUser() {
return user;
}
public void setUser(GitlabUser user) {
this.user = user;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy