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

se.bjurr.violations.comments.bitbucketserver.lib.client.model.BitbucketServerTask Maven / Gradle / Ivy

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;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy