Searched defs:pluginInstance (Results 1 - 4 of 4) sorted by relevance

/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/delegation/
H A DDelegationEvaluatorImpl.java91 private DelegationInterface pluginInstance = null; field in class:DelegationEvaluatorImpl
215 if (pluginInstance == null) {
216 pluginInstance =
218 if (pluginInstance == null) {
223 result = pluginInstance.isAllowed(
253 if (pluginInstance != null) {
255 return pluginInstance.getPermissions(token, name);
H A DDelegationManager.java85 private static DelegationInterface pluginInstance = null; field in class:DelegationManager
115 if (pluginInstance == null) {
116 pluginInstance = getDelegationPlugin();
192 if (pluginInstance != null) {
194 return pluginInstance.getPrivileges(token, orgName);
281 if (pluginInstance != null) {
283 pluginInstance.addPrivilege(token, orgName, privilege);
304 if (pluginInstance != null) {
306 pluginInstance.removePrivilege(token, orgName, privilegeName);
330 if (pluginInstance !
[all...]
/forgerock/openam/openam-core/src/main/java/com/sun/identity/delegation/
H A DDelegationEvaluatorImpl.java94 private DelegationInterface pluginInstance = null; field in class:DelegationEvaluatorImpl
211 if (pluginInstance == null) {
212 pluginInstance =
214 if (pluginInstance == null) {
219 result = pluginInstance.isAllowed(
249 if (pluginInstance != null) {
251 return pluginInstance.getPermissions(token, name);
H A DDelegationManager.java82 private volatile static DelegationInterface pluginInstance = null; field in class:DelegationManager
112 if (pluginInstance == null) {
113 pluginInstance = getDelegationPlugin();
189 if (pluginInstance != null) {
191 return pluginInstance.getPrivileges(token, orgName);
278 if (pluginInstance != null) {
280 pluginInstance.addPrivilege(token, orgName, privilege);
301 if (pluginInstance != null) {
303 pluginInstance.removePrivilege(token, orgName, privilegeName);
327 if (pluginInstance !
[all...]

Completed in 22 milliseconds