1 package ch.busyboxes.agoo.service;
2
3 import java.util.List;
4
5 import ch.busyboxes.agoo.controller.model.WebWatchedFolder;
6
7
8
9
10
11
12 public interface WatchedFolderService {
13
14
15
16
17
18
19 public List<WebWatchedFolder> getAllWatchedFolders();
20
21
22
23
24
25
26
27 public WebWatchedFolder createWatchedFolderByPath(String folderPath);
28
29
30
31
32
33
34
35 public WebWatchedFolder getWatchedFolderById(Long folderId);
36
37
38
39
40
41
42 public void refreshWatchedFilesInWatchedFolder(Long folderId);
43
44
45
46
47
48
49 public void deleteWatchedFolder(Long folderId);
50
51 }