1 18 package org.osgi.service.wireadmin; 19 20 import java.util.Dictionary ; 21 22 import org.osgi.framework.InvalidSyntaxException; 23 24 43 public interface WireAdmin { 44 97 public Wire createWire(String producerPID, String consumerPID, 98 Dictionary properties); 99 100 117 public void deleteWire(Wire wire); 118 119 141 public void updateWire(Wire wire, Dictionary properties); 142 143 169 public Wire[] getWires(String filter) throws InvalidSyntaxException; 170 } 171 | Popular Tags |