Wire Admin Service

Description
This bundle is an implementation of the Wire Admin Service version 1.0 (as defined in the OSGi specification release 3). Currently this implementation is almost completed, however some aspects haven't yet been implemented:

Also, please note that wires are persisted in the persistent storage area provided for the bundle by the OSGi framework. This means that existing wires may be lost if the bundle is uninstalled. This should change in a future version when the Configuration Admin Service becomes available.

Also see README.txt

Contributor(s)
Humberto Cervantes (hcm@xanum.uam.mx)
Didier Donsez (didier.donsez@imag.fr)

License
BSD

Services
Name(s)
org.osgi.service.wireadmin.WireAdmin
Relevant interface(s)
public interface WireAdmin
{
public Wire createWire(String producerPID, String consumerPID, Dictionary properties);

public void deleteWire(Wire wire);

public void updateWire(Wire wire, Dictionary properties );

public Wire[] getWires(String filter) throws InvalidSyntaxException;
}

Properties
The wireadmin bundle also offers the following configurable properties:

These properties can be configured using the standard bundle.properties file as described in the usage document.

Provisions
org.osgi.service.wireadmin