Package org.gitlab4j.api.models
Class Contributor
- java.lang.Object
-
- org.gitlab4j.api.models.AbstractUser<Contributor>
-
- org.gitlab4j.api.models.Contributor
-
- All Implemented Interfaces:
java.io.Serializable
public class Contributor extends AbstractUser<Contributor>
This class models the object for a repository contributor. See Contributors at GitLab.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description Contributor()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Integer
getAdditions()
java.lang.Integer
getCommits()
java.lang.Integer
getDeletions()
void
setAdditions(java.lang.Integer additions)
void
setCommits(java.lang.Integer commits)
void
setDeletions(java.lang.Integer deletions)
-
Methods inherited from class org.gitlab4j.api.models.AbstractUser
getAvatarUrl, getCreatedAt, getEmail, getId, getName, getState, getUsername, getWebUrl, setAvatarUrl, setCreatedAt, setEmail, setId, setName, setState, setUsername, setWebUrl, toString, withAvatarUrl, withCreatedAt, withEmail, withId, withName, withState, withUsername, withWebUrl
-
-
-
-
Method Detail
-
getCommits
public java.lang.Integer getCommits()
-
setCommits
public void setCommits(java.lang.Integer commits)
-
getAdditions
public java.lang.Integer getAdditions()
-
setAdditions
public void setAdditions(java.lang.Integer additions)
-
getDeletions
public java.lang.Integer getDeletions()
-
setDeletions
public void setDeletions(java.lang.Integer deletions)
-
-