All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.messners.gitlab.api.models.MergeRequestComment Maven / Gradle / Ivy

Go to download

GitLab API provides a full featured Java API for working with GitLab repositories via the GitLab REST API

There is a newer version: 4.0.4
Show newest version

package com.messners.gitlab.api.models;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlRootElement;

@XmlRootElement
@XmlAccessorType(XmlAccessType.FIELD)
public class MergeRequestComment {

	private Author author;
	private String note;

	public Author getAuthor () {
		return this.author;
	}

	public void setAuthor (Author author) {
		this.author = author;
	}

	public String getNote () {
		return this.note;
	}

	public void setNote (String note) {
		this.note = note;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy