se.bjurr.violations.comments.bitbucketserver.lib.client.model.BitbucketServerTask Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of violation-comments-to-bitbucket-server-lib Show documentation
Show all versions of violation-comments-to-bitbucket-server-lib Show documentation
Library that adds violation comments from static code analysis to Bitbucket Server.
The newest version!
package se.bjurr.violations.comments.bitbucketserver.lib.client.model;
public class BitbucketServerTask {
private final Integer id;
private final String text;
public BitbucketServerTask(Integer id, String text) {
this.text = text;
this.id = id;
}
public Integer getId() {
return id;
}
public String getText() {
return text;
}
}