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

com.almworks.jira.structure.api.folder.FolderManager Maven / Gradle / Ivy

There is a newer version: 17.25.3
Show newest version
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