1 package ch.busyboxes.agoo.model.enumeration;
2
3 /**
4 * Possible tasks
5 *
6 * @author julien@busyboxes.ch
7 */
8 public enum TaskType {
9
10 /**
11 * Re-scan the given watched folder
12 */
13 SCAN_FOLDER,
14
15 /**
16 * Check the given file
17 */
18 CHECK_FILE
19
20 };