Advertisement
Guest User

Untitled

a guest
Oct 18th, 2019
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.42 KB | None | 0 0
  1. package com.pprokurat.api.service;
  2.  
  3. import com.fasterxml.jackson.databind.JsonNode;
  4. import com.pprokurat.api.model.Folder;
  5. import org.springframework.stereotype.Service;
  6.  
  7. /**
  8.  * Created by IntelliJ IDEA.
  9.  *
  10.  * @author MichaƂ Gogolewski
  11.  */
  12. @Service
  13. public class FolderService {
  14.     public JsonNode getAll() {
  15.         return null;
  16.     }
  17.  
  18.     public Folder getOneById(Integer folderId) {
  19.         return null;
  20.     }
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement