
com.almworks.jira.structure.api.memo.MemoManager 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.memo;
import com.atlassian.annotations.PublicApi;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
import java.util.Collection;
import java.util.List;
@PublicApi
public interface MemoManager {
@Nullable
Memo getMemo(long memoId);
@NotNull
List extends Memo> getMemos(@NotNull Collection memoIds);
@NotNull
MemoUpdateBuilder getUpdateBuilder(long memoId);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy