1 19 20 package com.sslexplorer.networkplaces; 21 22 import java.util.List ; 23 24 import com.sslexplorer.extensions.types.PluginDatabase; 25 26 33 public interface NetworkPlaceDatabase extends PluginDatabase { 34 35 41 public List <NetworkPlace> getNetworkPlaces() throws Exception ; 42 43 49 public List <NetworkPlace> getNetworkPlaces(int realmID) throws Exception ; 50 51 57 public NetworkPlace getNetworkPlace(int resource_id) throws Exception ; 58 59 66 public NetworkPlace getNetworkPlace(String name, int realmID) throws Exception ; 67 68 75 public NetworkPlace deleteNetworkPlace(int resourceId) throws Exception ; 76 77 95 public NetworkPlace createNetworkPlace(String scheme, String shortName, String description, String host, String uri, int port, String username, String password, boolean readOnly, 96 boolean allowResursive, boolean noDelete, boolean showHidden, int realmID) throws Exception ; 97 98 116 public void updateNetworkPlace(int resourceId, String scheme, String resourceName, String resourceDescription, String host, String uri, int port, String username, String password, boolean readOnly, 117 boolean allowResursive, boolean noDelete, boolean showHidden) throws Exception ; 118 119 }
| Popular Tags
|