1 18 package org.osgi.service.cm; 19 20 import java.io.IOException ; 21 import java.util.Dictionary ; 22 23 65 public interface Configuration { 66 72 public String getPid(); 73 74 92 public Dictionary getProperties(); 93 94 123 public void update(Dictionary properties) throws IOException ; 124 125 143 public void delete() throws IOException ; 144 145 152 public String getFactoryPid(); 153 154 172 public void update() throws IOException ; 173 174 190 public void setBundleLocation(String bundleLocation); 191 192 205 public String getBundleLocation(); 206 207 216 public boolean equals(Object other); 217 218 226 public int hashCode(); 227 } 228 | Popular Tags |