com.almworks.jira.structure.api.planningtask.PlanningTaskManager Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of structure-api Show documentation
Show all versions of structure-api Show documentation
Public API for the Structure Plugin for JIRA
The newest version!
package com.almworks.jira.structure.api.planningtask;
import com.atlassian.annotations.Internal;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
import java.util.Collection;
import java.util.List;
@Internal
public interface PlanningTaskManager {
@Nullable
PlanningTask getPlanningTask(long planningTaskId);
@NotNull
List extends PlanningTask> getPlanningTasks(@NotNull Collection planningTaskIds);
@NotNull
PlanningTaskUpdateBuilder getUpdateBuilder(long planningTaskId);
}