1 18 package org.drftpd.sections; 19 20 import java.util.Collection ; 21 22 import net.sf.drftpd.master.ConnectionManager; 23 24 25 29 public interface SectionManagerInterface { 30 public ConnectionManager getConnectionManager(); 31 32 36 public SectionInterface lookup(String path); 37 public Collection getSections(); 38 39 42 public SectionInterface getSection(String string); 43 44 public void reload(); 45 } 46 | Popular Tags |