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

com.almworks.jira.structure.api.memo.Memo Maven / Gradle / Ivy

The newest version!
package com.almworks.jira.structure.api.memo;

import com.atlassian.annotations.PublicApi;
import com.atlassian.jira.user.ApplicationUser;
import org.jetbrains.annotations.Nullable;

import java.time.LocalDate;

@PublicApi
public interface Memo {
  @Nullable
  String getSummary();
  @Nullable
  String getDescription();
  @Nullable
  ApplicationUser getAssignee();
  @Nullable
  LocalDate getDueDate();
  @Nullable
  Long getOriginalEstimate();
  @Nullable
  Long getRemainingEstimate();
  @Nullable
  Long getTimeSpent();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy