Advertisement
Guest User

Untitled

a guest
Oct 19th, 2019
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.41 KB | None | 0 0
  1. package com.pprokurat.api.service;
  2.  
  3. import com.pprokurat.api.exception.FolderNotFoundException;
  4. import com.pprokurat.api.model.Folder;
  5.  
  6. import java.util.List;
  7.  
  8. /**
  9.  * Created by IntelliJ IDEA.
  10.  *
  11.  * @author Michaล‚ Gogolewski
  12.  */
  13. public interface FolderService {
  14.     List<Folder> getFoldersList() throws FolderNotFoundException;
  15.  
  16.     Folder getFolderById(int folderId) throws FolderNotFoundException;
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement