Class PackagePermission
- All Implemented Interfaces:
Serializable,Guard
A package is a dot-separated string that defines a fully qualified Java package.
For example:
org.osgi.service.http
PackagePermission has three actions: exportonly,
import and export. The export action, which is
deprecated, implies the import action.
- Author:
- $Id: c2d45ff158a6a19ff7bc155af3ac9941cb6a89d6 $
- See Also:
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionPackagePermission(String name, String actions) Creates a newPackagePermissionobject.PackagePermission(String name, Bundle exportingBundle, String actions) Creates a new requestedPackagePermissionobject to be used by code that must performcheckPermissionfor theimportaction. -
Method Summary
Modifier and TypeMethodDescriptionbooleanDetermines the equality of twoPackagePermissionobjects.Returns the canonical string representation of thePackagePermissionactions.inthashCode()Returns the hash code value for this object.booleanDetermines if the specified permission is implied by this object.Returns a newPermissionCollectionobject suitable for storingPackagePermissionobjects.Methods inherited from class java.security.Permission
checkGuard, getName, toString
-
Field Details
-
EXPORT
Deprecated.Since 1.5. Useexportonlyinstead.The action stringexport. Theexportaction implies theimportaction.- See Also:
-
EXPORTONLY
The action stringexportonly. Theexportonlyaction does not imply theimportaction.- Since:
- 1.5
- See Also:
-
IMPORT
The action stringimport.- See Also:
-
-
Constructor Details
-
PackagePermission
Creates a newPackagePermissionobject.The name is specified as a normal Java package name: a dot-separated string. Wildcards may be used.
name ::= <package name> | <package name ending in ".*"> | *
Examples:org.osgi.service.http javax.servlet.* *
For theimportaction, the name can also be a filter expression. The filter gives access to the following attributes:- signer - A Distinguished Name chain used to sign the exporting bundle. Wildcards in a DN are not matched according to the filter string rules, but according to the rules defined for a DN chain.
- location - The location of the exporting bundle.
- id - The bundle ID of the exporting bundle.
- name - The symbolic name of the exporting bundle.
- package.name - The name of the requested package.
Package Permissions are granted over all possible versions of a package. A bundle that needs to export a package must have the appropriate
PackagePermissionfor that package; similarly, a bundle that needs to import a package must have the appropriatePackagePermssionfor that package.Permission is granted for both classes and resources.
- Parameters:
name- Package name or filter expression. A filter expression can only be specified if the specified action isimport.actions-exportonly,import(canonical order).- Throws:
IllegalArgumentException- If the specified name is a filter expression and either the specified action is notimportor the filter has an invalid syntax.
-
PackagePermission
Creates a new requestedPackagePermissionobject to be used by code that must performcheckPermissionfor theimportaction.PackagePermissionobjects created with this constructor cannot be added to aPackagePermissionpermission collection.- Parameters:
name- The name of the requested package to import.exportingBundle- The bundle exporting the requested package.actions- The actionimport.- Throws:
IllegalArgumentException- If the specified action is notimportor the name is a filter expression.- Since:
- 1.5
-
-
Method Details
-
implies
Determines if the specified permission is implied by this object.This method checks that the package name of the target is implied by the package name of this object. The list of
PackagePermissionactions must either match or allow for the list of the target object to imply the targetPackagePermissionaction.The permission to export a package implies the permission to import the named package.
x.y.*,"export" -> x.y.z,"export" is true *,"import" -> x.y, "import" is true *,"export" -> x.y, "import" is true x.y,"export" -> x.y.z, "export" is false
- Overrides:
impliesin classBasicPermission- Parameters:
p- The requested permission.- Returns:
trueif the specified permission is implied by this object;falseotherwise.
-
getActions
Returns the canonical string representation of thePackagePermissionactions.Always returns present
PackagePermissionactions in the following order:EXPORTONLY,IMPORT.- Overrides:
getActionsin classBasicPermission- Returns:
- Canonical string representation of the
PackagePermissionactions.
-
newPermissionCollection
Returns a newPermissionCollectionobject suitable for storingPackagePermissionobjects.- Overrides:
newPermissionCollectionin classBasicPermission- Returns:
- A new
PermissionCollectionobject.
-
equals
Determines the equality of twoPackagePermissionobjects. This method checks that specified package has the same package name andPackagePermissionactions as thisPackagePermissionobject.- Overrides:
equalsin classBasicPermission- Parameters:
obj- The object to test for equality with thisPackagePermissionobject.- Returns:
trueifobjis aPackagePermission, and has the same package name and actions as thisPackagePermissionobject;falseotherwise.
-
hashCode
public int hashCode()Returns the hash code value for this object.- Overrides:
hashCodein classBasicPermission- Returns:
- A hash code value for this object.
-