1 19 20 package com.sslexplorer.vfs; 21 22 23 30 public interface VFSProvider extends Comparable <VFSProvider> { 31 32 35 public final static int ELEMENT_NOT_APPLICABLE = 1; 36 37 40 public final static int ELEMENT_REQUIRED = 2; 41 42 45 public final static int ELEMENT_NOT_REQUIRED = 3; 46 47 52 public Class getStoreClass(); 53 54 59 public String getBundle(); 60 61 66 public String getScheme(); 67 68 73 public boolean isFireEvents(); 74 75 84 public boolean willHandle(String scheme); 85 86 93 public int getHostRequirement(); 94 95 102 public int getPortRequirement(); 103 104 111 public int getUserInfoRequirement(); 112 113 120 public int getPathRequirement(); 121 122 127 public boolean isHiddenFilesSupported(); 128 } 129 | Popular Tags |