org.ndx.agile.architecture.gitlab.GitLabComment Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gitlab-scm-handler Show documentation
Show all versions of gitlab-scm-handler Show documentation
Allow gitlab infos to be included in project documentation
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