Class PackagePermission
- java.lang.Object
-
- java.security.Permission
-
- java.security.BasicPermission
-
- org.osgi.framework.PackagePermission
-
- All Implemented Interfaces:
java.io.Serializable
,java.security.Guard
public final class PackagePermission extends java.security.BasicPermission
A bundle's authority to import or export a package.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
andexport
. Theexport
action, which is deprecated, implies theimport
action.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
EXPORT
Deprecated.As of 1.5.static java.lang.String
EXPORTONLY
The action stringexportonly
.static java.lang.String
IMPORT
The action stringimport
.
-
Constructor Summary
Constructors Constructor Description PackagePermission(java.lang.String name, java.lang.String actions)
Creates a newPackagePermission
object.PackagePermission(java.lang.String name, Bundle exportingBundle, java.lang.String actions)
Creates a new requestedPackagePermission
object to be used by code that must performcheckPermission
for theimport
action.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object obj)
Determines the equality of twoPackagePermission
objects.java.lang.String
getActions()
Returns the canonical string representation of thePackagePermission
actions.int
hashCode()
Returns the hash code value for this object.boolean
implies(java.security.Permission p)
Determines if the specified permission is implied by this object.java.security.PermissionCollection
newPermissionCollection()
Returns a newPermissionCollection
object suitable for storingPackagePermission
objects.
-
-
-
Field Detail
-
EXPORT
public static final java.lang.String EXPORT
Deprecated.As of 1.5. Useexportonly
instead.The action stringexport
. Theexport
action implies theimport
action.- See Also:
- Constant Field Values
-
EXPORTONLY
public static final java.lang.String EXPORTONLY
The action stringexportonly
. Theexportonly
action does not imply theimport
action.- Since:
- 1.5
- See Also:
- Constant Field Values
-
IMPORT
public static final java.lang.String IMPORT
The action stringimport
.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
PackagePermission
public PackagePermission(java.lang.String name, java.lang.String actions)
Creates a newPackagePermission
object.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 theimport
action, 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
PackagePermission
for that package; similarly, a bundle that needs to import a package must have the appropriatePackagePermssion
for 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:
java.lang.IllegalArgumentException
- If the specified name is a filter expression and either the specified action is notimport
or the filter has an invalid syntax.
-
PackagePermission
public PackagePermission(java.lang.String name, Bundle exportingBundle, java.lang.String actions)
Creates a new requestedPackagePermission
object to be used by code that must performcheckPermission
for theimport
action.PackagePermission
objects created with this constructor cannot be added to aPackagePermission
permission collection.- Parameters:
name
- The name of the requested package to import.exportingBundle
- The bundle exporting the requested package.actions
- The actionimport
.- Throws:
java.lang.IllegalArgumentException
- If the specified action is notimport
or the name is a filter expression.- Since:
- 1.5
-
-
Method Detail
-
implies
public boolean implies(java.security.Permission p)
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
PackagePermission
actions must either match or allow for the list of the target object to imply the targetPackagePermission
action.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:
implies
in classjava.security.BasicPermission
- Parameters:
p
- The requested permission.- Returns:
true
if the specified permission is implied by this object;false
otherwise.
-
getActions
public java.lang.String getActions()
Returns the canonical string representation of thePackagePermission
actions.Always returns present
PackagePermission
actions in the following order:EXPORTONLY
,IMPORT
.- Overrides:
getActions
in classjava.security.BasicPermission
- Returns:
- Canonical string representation of the
PackagePermission
actions.
-
newPermissionCollection
public java.security.PermissionCollection newPermissionCollection()
Returns a newPermissionCollection
object suitable for storingPackagePermission
objects.- Overrides:
newPermissionCollection
in classjava.security.BasicPermission
- Returns:
- A new
PermissionCollection
object.
-
equals
public boolean equals(java.lang.Object obj)
Determines the equality of twoPackagePermission
objects. This method checks that specified package has the same package name andPackagePermission
actions as thisPackagePermission
object.- Overrides:
equals
in classjava.security.BasicPermission
- Parameters:
obj
- The object to test for equality with thisPackagePermission
object.- Returns:
true
ifobj
is aPackagePermission
, and has the same package name and actions as thisPackagePermission
object;false
otherwise.
-
hashCode
public int hashCode()
Returns the hash code value for this object.- Overrides:
hashCode
in classjava.security.BasicPermission
- Returns:
- A hash code value for this object.
-
-