Top Description Methods
org.osgi.framework.wiring

public Interface BundleWire

extends Wire
Annotations
@ProviderType
Imports
org.osgi.annotation.versioning.ProviderType, org.osgi.resource.Wire

A wire connecting a BundleCapability to a BundleRequirement.
Author
$Id: 9877055d8ebbe52b82ec16b876d4491a47a106ef $

Method Summary

Modifier and TypeMethod and Description
public BundleCapability

Returns:

The BundleCapability for this wire.
getCapability
()

Redeclares org.osgi.resource.Wire.getCapability.

Returns the BundleCapability for this wire.

public BundleRevision

Returns:

The resource providing the capability.
getProvider
()

Redeclares org.osgi.resource.Wire.getProvider.

Returns the resource providing the capability.

public BundleWiring

Returns:

The bundle wiring providing the capability. If the bundle wiring providing the capability is not in use, null will be returned.
getProviderWiring
()

Returns the bundle wiring providing the capability.

public BundleRequirement

Returns:

The BundleRequirement for this wire.
getRequirement
()

Redeclares org.osgi.resource.Wire.getRequirement.

Return the BundleRequirement for this wire.

public BundleRevision

Returns:

The resource who requires the capability.
getRequirer
()

Redeclares org.osgi.resource.Wire.getRequirer.

Returns the resource who requires the capability.

public BundleWiring

Returns:

The bundle wiring whose requirement is wired to the capability. If the bundle wiring requiring the capability is not in use, null will be returned.
getRequirerWiring
()

Returns the bundle wiring who requires the capability.

Inherited from org.osgi.resource.Wire:
equalshashCode

Method Detail

getCapabilityback to summary
public BundleCapability getCapability()

Redeclares org.osgi.resource.Wire.getCapability.

Returns the BundleCapability for this wire.

Returns:BundleCapability

The BundleCapability for this wire.

Annotations
@Override
getProviderback to summary
public BundleRevision getProvider()

Redeclares org.osgi.resource.Wire.getProvider.

Returns the resource providing the capability.

The returned resource may differ from the resource referenced by the capability.

This method returns the same value as getProviderWiring(). getRevision().

Returns:BundleRevision

The resource providing the capability.

Annotations
@Override
Since
1.1
getProviderWiringback to summary
public BundleWiring getProviderWiring()

Returns the bundle wiring providing the capability.

The bundle revision referenced by the returned bundle wiring may differ from the bundle revision referenced by the capability.

Returns:BundleWiring

The bundle wiring providing the capability. If the bundle wiring providing the capability is not in use, null will be returned.

getRequirementback to summary
public BundleRequirement getRequirement()

Redeclares org.osgi.resource.Wire.getRequirement.

Return the BundleRequirement for this wire.

Returns:BundleRequirement

The BundleRequirement for this wire.

Annotations
@Override
getRequirerback to summary
public BundleRevision getRequirer()

Redeclares org.osgi.resource.Wire.getRequirer.

Returns the resource who requires the capability.

The returned resource may differ from the resource referenced by the requirement.

This method returns the same value as getRequirerWiring(). getRevision().

Returns:BundleRevision

The resource who requires the capability.

Annotations
@Override
Since
1.1
getRequirerWiringback to summary
public BundleWiring getRequirerWiring()

Returns the bundle wiring who requires the capability.

The bundle revision referenced by the returned bundle wiring may differ from the bundle revision referenced by the requirement.

Returns:BundleWiring

The bundle wiring whose requirement is wired to the capability. If the bundle wiring requiring the capability is not in use, null will be returned.