1 11 12 package org.eclipse.osgi.framework.adaptor; 13 14 import java.io.IOException ; 15 16 43 public interface PermissionStorage { 44 54 public String [] getLocations() throws IOException ; 55 56 69 public String [] getPermissionData(String location) throws IOException ; 70 71 82 public void setPermissionData(String location, String [] data) throws IOException ; 83 84 90 public void saveConditionalPermissionInfos(String [] infos) throws IOException ; 91 92 99 public String [] getConditionalPermissionInfos() throws IOException ; 100 } 101 | Popular Tags |