Class WebSphereSecurityPermission
- java.lang.Object
- 
- java.security.Permission
- 
- java.security.BasicPermission
- 
- com.ibm.websphere.security.WebSphereSecurityPermission
 
 
 
- 
- All Implemented Interfaces:
- java.io.Serializable,- java.security.Guard
 
 public final class WebSphereSecurityPermission extends java.security.BasicPermissionThis class is for generic Websphere security permissions. A WebSphereSecurityPermissioncontains a name (also referred to as a "target name") but with no an action list. The following names are allowed: internal, provider, privileged, where internal implies provider, and provider implies privileged.- Since:
- 1.0
- See Also:
- Serialized Form
 
- 
- 
Field SummaryFields Modifier and Type Field Description static WebSphereSecurityPermissionINTERNAL_PERMISSIONstatic WebSphereSecurityPermissionPRIVILEGED_PERMISSIONstatic WebSphereSecurityPermissionPROVIDER_PERMISSION
 - 
Constructor SummaryConstructors Constructor Description WebSphereSecurityPermission(java.lang.String action)Creates a newWebSphereSecurityPermissionwith the default name of "WebSphereSecurityPermission" and an action.
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanimplies(java.security.Permission p)
 
- 
- 
- 
Field Detail- 
INTERNAL_PERMISSIONpublic static final WebSphereSecurityPermission INTERNAL_PERMISSION 
 - 
PROVIDER_PERMISSIONpublic static final WebSphereSecurityPermission PROVIDER_PERMISSION 
 - 
PRIVILEGED_PERMISSIONpublic static final WebSphereSecurityPermission PRIVILEGED_PERMISSION 
 
- 
 - 
Constructor Detail- 
WebSphereSecurityPermissionpublic WebSphereSecurityPermission(java.lang.String action) Creates a new WebSphereSecurityPermissionwith the default name of "WebSphereSecurityPermission" and an action. The name is the symbolic name of theWebSphereSecurityPermission. the following action values are valid: "internal", "provider", and "privileged".The internal permission implies the provider permission. The provider permission implies the privileged permission. To maintain runtime integrity, no application code should be given permission above privileged. The provider permission should be granted to plug-in code. The internal permission is granted only to WebSphere Application Server runtime code. - Parameters:
- action- The action value of the- WebSphereSecurityPermission.
 
 
- 
 
-