org.gitlab.api.models.GitlabNote 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 java.util.Date;
import org.codehaus.jackson.annotate.JsonProperty;
public class GitlabNote {
public static final String URL = "/notes";
private Integer _id;
private String _body;
private String _attachment;
private GitlabUser _author;
@JsonProperty("created_at")
private Date _createdAt;
public Integer getId() {
return _id;
}
public void setId(Integer id) {
_id = id;
}
public String getBody() {
return _body;
}
public void setBody(String body) {
_body = body;
}
public GitlabUser getAuthor() {
return _author;
}
public void setAuthor(GitlabUser author) {
_author = author;
}
public Date getCreatedAt() {
return _createdAt;
}
public void setCreatedAt(Date createdAt) {
_createdAt = createdAt;
}
public String getAttachment() {
return _attachment;
}
public void setAttachment(String attachment) {
_attachment = attachment;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy