|
Oracle Fusion Middleware Java API Reference for Oracle WebLogic Server 12c (12.2.1) Part Number E55141-01 P4 Change 1723563 on 2015/10/09 |
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface AdjudicatorV2
The AdjudicatorV2
interface defines the security service provider interface (SSPI) for an object that is responsible for making the final decision as to whether the processing of the requested method should be permitted to proceed or should be denied.
An implementation of the AdjudicatorV2
interface is the part of an Adjudication provider that is called after all the Access Decisions' isAccessAllowed
methods have been called and returned successfully (that is, without throwing exceptions).
An implementation of the AdjudicatorV2
interface is a singleton object that exists once per realm/JVM (which is part of a security policy domain).
Method Summary | |
---|---|
abstract boolean |
adjudicate(Result[] results, Resource resource, ContextHandler handler) Determines the final adjudication from a set of decisions rendered by Access Decisions, provided they are acting as policy decision points (PDPs). |
abstract void |
initialize(String[] accessDecisionClassNames) Initializes the names of the Access Decisions so that they do not require computation on every isAccessAllowed call that the Authorization Manager (part of the WebLogic Security Framework) makes. |
Method Detail |
---|
void initialize(String[] accessDecisionClassNames)
isAccessAllowed
call that the Authorization Manager (part of the WebLogic Security Framework) makes.accessDecisionClassNames
- an array of String objects containing the list of Access Decisions. The order of this list will match the order of the array of int
results sent into the adjudicate
call.boolean adjudicate(Result[] results, Resource resource, ContextHandler handler)
results
- a Result
array returned from the Authorization Manager, containing the result of each Access Decision. Note that the order of results is the same as the order of Access Decision class names that were passed in on the initialize
method of this interface.TRUE
indicates that the decision is to permit; a value of FALSE
indicates that the decision is to deny.
|
Copyright 1996, 2015, 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.2.1) Part Number E55141-01 P4 Change 1723563 on 2015/10/09 |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |