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

org.ndx.agile.architecture.gitlab.GitLabComment Maven / Gradle / Ivy

The newest version!
package org.ndx.agile.architecture.gitlab;

import java.util.Date;

import org.gitlab4j.api.models.Note;
import org.ndx.agile.architecture.base.enhancers.tickets.Comment;

public class GitLabComment implements Comment {

	private Note source;

	public GitLabComment(Note note) {
		this.source = note;
	}

	@Override
	public Date getDate() {
		return source.getUpdatedAt();
	}

	@Override
	public String getText() {
		return source.getBody();
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy