|
Oracle | ||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
DeployableAuthorizationProviderV2
public interface DeployableAuthorizationProvider
An Authorization provider that supports deploying policies on behalf of Web application and EJB deployment needs to implement this interface.
A policy states which roles are allowed to perform particular actions on a resource (for example, who is allowed to call a particular method on a certain EJB).
When a Web application or EJB is deployed, policies need to be created. Similarly, when the Web application or EJB is re/hot deployed, the policies need to be updated. And, when the Web application or EJB is undeployed, the policies should be removed. This work needs to be done by an Authorization provider.
Not all Authorization providers need to support this interface. However, in a realm, at least one of the Authorization providers must support this interface. Otherwise, it is impossible to deploy Web applications and EJBs. To help with this, there are two MBeans associated with Authorization providers: one for providers who support deployment and one for those that do not support deployment. The MBean for deployment has an attribute that indicates whether this provider should be used for deployment. This way, when the realm is configured, it is possible to detect illegal configurations (for example, none of the Authorization providers support Web application/EJB deployment).
Method Summary | |
---|---|
void |
deployPolicy(Resource resource,
String[] roleNames)
Deprecated. Deploys a policy (that is, creates a policy on behalf of a deployed Web application or EJB). |
void |
undeployPolicy(Resource resource)
Deprecated. Undeploys a policy (that is, deletes a policy on behalf of an undeployed Web application or EJB). |
Methods inherited from interface weblogic.security.spi.AuthorizationProvider |
---|
getAccessDecision |
Methods inherited from interface weblogic.security.spi.SecurityProvider |
---|
getDescription, initialize, shutdown |
Method Detail |
---|
void deployPolicy(Resource resource, String[] roleNames) throws ResourceCreationException
resource
- the Resource
object to which the policy appliesroleNames
- a String array of roles (within this application) that are in
this policy. (For example, for a Web application,
the <role-name>
from the
<auth-constraint>
portion of the
web.xml
deployment descriptor file.)
ResourceCreationException
- if an unexpected error occurs while
deploying the policy for the specified resourcevoid undeployPolicy(Resource resource) throws ResourceRemovalException
resource
- the Resource
object to which the policy applies
ResourceRemovalException
- if an unexpected error occurs while
undeploying the specified resource
|
Documentation is available at http://download.oracle.com/docs/cd/E12839_01/web.1111 Copyright 1996,2009, Oracle and/or its affiliates. All rights reserved. Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners. Part Number E13941-01 Oracle WebLogic Server 10.3.1 API Reference |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |