1 16 package org.apache.commons.vfs.provider; 17 18 import org.apache.commons.logging.Log; 19 import org.apache.commons.vfs.FileSystemException; 20 21 33 public interface VfsComponent 34 { 35 40 void setLogger(Log logger); 41 42 47 void setContext(VfsComponentContext context); 48 49 52 void init() throws FileSystemException; 53 54 57 void close(); 58 } 59 | Popular Tags |