blob: 67ba3e9a5ad368826bbd9e52ca2b4bb2cf3ba5cf [file] [log] [blame]
/*
* Copyright (c) OSGi Alliance (2001, 2008). All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.osgi.service.packageadmin;
import org.osgi.framework.Bundle;
import org.osgi.framework.Version;
/**
* An exported package.
*
* Objects implementing this interface are created by the Package Admin service.
*
* <p>
* The term <i>exported package</i> refers to a package that has been exported
* from a resolved bundle. This package may or may not be currently wired to
* other bundles.
*
* <p>
* The information about an exported package provided by this object may change.
* An <code>ExportedPackage</code> object becomes stale if the package it
* references has been updated or removed as a result of calling
* <code>PackageAdmin.refreshPackages()</code>.
*
* If this object becomes stale, its <code>getName()</code> and
* <code>getVersion()</code> methods continue to return their original values,
* <code>isRemovalPending()</code> returns <code>true</code>, and
* <code>getExportingBundle()</code> and <code>getImportingBundles()</code>
* return <code>null</code>.
*
* @ThreadSafe
* @version $Revision: 5673 $
*/
public interface ExportedPackage {
/**
* Returns the name of the package associated with this exported package.
*
* @return The name of this exported package.
*/
public String getName();
/**
* Returns the bundle exporting the package associated with this exported
* package.
*
* @return The exporting bundle, or <code>null</code> if this
* <code>ExportedPackage</code> object has become stale.
*/
public Bundle getExportingBundle();
/**
* Returns the resolved bundles that are currently wired to this exported
* package.
*
* <p>
* Bundles which require the exporting bundle associated with this exported
* package are considered to be wired to this exported package are included
* in the returned array. See {@link RequiredBundle#getRequiringBundles()}.
*
* @return The array of resolved bundles currently wired to this exported
* package, or <code>null</code> if this
* <code>ExportedPackage</code> object has become stale. The array
* will be empty if no bundles are wired to this exported package.
*/
public Bundle[] getImportingBundles();
/**
* Returns the version of this exported package.
*
* @return The version of this exported package, or <code>null</code> if
* no version information is available.
* @deprecated As of 1.2, replaced by {@link #getVersion}.
*/
public String getSpecificationVersion();
/**
* Returns the version of this exported package.
*
* @return The version of this exported package, or
* {@link Version#emptyVersion} if no version information is
* available.
* @since 1.2
*/
public Version getVersion();
/**
* Returns <code>true</code> if the package associated with this
* <code>ExportedPackage</code> object has been exported by a bundle that
* has been updated or uninstalled.
*
* @return <code>true</code> if the associated package is being exported
* by a bundle that has been updated or uninstalled, or if this
* <code>ExportedPackage</code> object has become stale;
* <code>false</code> otherwise.
*/
public boolean isRemovalPending();
}