Uses of Class
de.fraunhofer.iese.mydata.policy.decision.AuthorizationDecision
-
Packages that use AuthorizationDecision Package Description de.fraunhofer.iese.mydata.component.interfaces de.fraunhofer.iese.mydata.policy.decision -
-
Uses of AuthorizationDecision in de.fraunhofer.iese.mydata.component.interfaces
Methods in de.fraunhofer.iese.mydata.component.interfaces that return AuthorizationDecision Modifier and Type Method Description AuthorizationDecision
IPolicyDecisionPoint. decisionRequest(Event event)
Notifies the PDP about a certain event.AuthorizationDecision
IPolicyEnforcementPoint. getDecision(Event event)
* It sends the event to subscribed PDP and returns AuthorizationDecision of PDP.Methods in de.fraunhofer.iese.mydata.component.interfaces that return types with arguments of type AuthorizationDecision Modifier and Type Method Description List<AuthorizationDecision>
IPolicyDecisionPoint. decisionRequests(List<Event> events)
Notifies the PDP about multiple events.Methods in de.fraunhofer.iese.mydata.component.interfaces with parameters of type AuthorizationDecision Modifier and Type Method Description void
IPolicyEnforcementPoint. enforceDecision(Event event, AuthorizationDecision decision)
It enforces the authorization decision to the event. -
Uses of AuthorizationDecision in de.fraunhofer.iese.mydata.policy.decision
Fields in de.fraunhofer.iese.mydata.policy.decision declared as AuthorizationDecision Modifier and Type Field Description static AuthorizationDecision
AuthorizationDecision. DECISION_ALLOW
The default decision for a plain allow.static AuthorizationDecision
AuthorizationDecision. DECISION_INHIBIT
The default decision for a plain inhibit.Methods in de.fraunhofer.iese.mydata.policy.decision that return AuthorizationDecision Modifier and Type Method Description static AuthorizationDecision
AuthorizationDecision. getDecisionAllow()
Get a clone of DECISION_ALLOW.static AuthorizationDecision
AuthorizationDecision. getDecisionInhibit()
Get a clone of DECISION_INHIBIT.Constructors in de.fraunhofer.iese.mydata.policy.decision with parameters of type AuthorizationDecision Constructor Description AuthorizationDecision(AuthorizationDecision prototype)
Constructor that takes the component_id and eventAllowed from Prototype.
-