Oracle Fusion Middleware
Java API Reference for Oracle WebLogic Server
12c (12.1.2)

Part Number E27170-01

weblogic.management.security.authorization
Interface PolicyEditorMBean

All Superinterfaces:
DescriptorBean, PolicyReaderMBean, SettableBean, StandardInterface
All Known Subinterfaces:
DefaultAuthorizerMBean, PolicyAuxiliaryMBean

public interface PolicyEditorMBean
extends PolicyReaderMBean

Provides a set of methods for creating, editing, and removing policies. An Authorization-provider MBean can optionally extend this MBean. The WebLogic Server Administration Console detects when an Authorization provider extends this MBean and automatically provides a GUI for using these methods.


Method Summary
 void createPolicy(String resourceId, String expression)
          Creates a policy for accessing a resource.
 void removePolicy(String resourceId)
          Removes a policy.
 void setPolicyExpression(String resourceId, String expression)
          Sets a policy expression for a resource.
 
Methods inherited from interface weblogic.management.security.authorization.PolicyReaderMBean
getPolicyExpression, policyExists
 
Methods inherited from interface weblogic.management.commo.StandardInterface
getName
 
Methods inherited from interface weblogic.descriptor.DescriptorBean
addPropertyChangeListener, createChildCopyIncludingObsolete, getParentBean, isEditable, removePropertyChangeListener
 
Methods inherited from interface weblogic.descriptor.SettableBean
isSet, unSet
 

Method Detail

setPolicyExpression

void setPolicyExpression(String resourceId,
                         String expression)
                         throws NotFoundException,
                                CreateException
Sets a policy expression for a resource.

Parameters:
resourceId - - The resource for which this method sets the policy expression. A null value will trigger NullPointerException.
expression - - The expression that determines the type of access this policy allows to the resource. A null value prohibits any type of access.
Throws:
NotFoundException
CreateException

createPolicy

void createPolicy(String resourceId,
                  String expression)
                  throws AlreadyExistsException,
                         CreateException
Creates a policy for accessing a resource.

Parameters:
resourceId - - The ID of the resource. A null value will trigger NullPointerException.

For information about creating resources, refer to the Javadoc for weblogic.security.spi.Resource.

expression - - The expression that determines the type of access this policy allows to the resource. A null value prohibits any type of access.
Throws:
AlreadyExistsException
CreateException

removePolicy

void removePolicy(String resourceId)
                  throws NotFoundException,
                         RemoveException
Removes a policy.

Parameters:
resourceId - - The resource for which this method removes a policy. A null value may trigger NullPointerException.
Throws:
NotFoundException
RemoveException

Copyright 1996, 2013, 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.

Oracle Fusion Middleware
Java API Reference for Oracle WebLogic Server
12c (12.1.2)

Part Number E27170-01