1 17 package com.sslexplorer.vfs.webdav; 18 19 import com.sslexplorer.vfs.VFSRepository; 20 import com.sslexplorer.vfs.VFSResource; 21 22 27 public interface DAVListener { 28 29 30 public static final int COLLECTION_CREATED = 1; 31 32 public static final int COLLECTION_REMOVED = 2; 33 34 public static final int RESOURCE_CREATED = 3; 35 36 public static final int RESOURCE_REMOVED = 4; 37 38 public static final int RESOURCE_MODIFIED = 5; 39 40 47 public void notify(VFSResource resource, int event); 48 49 } 50 | Popular Tags |