com.almworks.jira.structure.api.folder.FolderManager 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
package com.almworks.jira.structure.api.folder;
import com.almworks.jira.structure.api.error.StructureException;
import com.atlassian.annotations.PublicApi;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
@PublicApi
public interface FolderManager {
long createFolder(@NotNull Folder folder) throws StructureException;
@Nullable
Folder getFolder(long id);
void updateFolder(long id, @NotNull Folder folder) throws StructureException;
void deleteFolder(long id) throws StructureException;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy