Searched defs:subject (Results 26 - 50 of 517) sorted by relevance

1234567891011>>

/forgerock/openam/openam-uma/src/main/java/org/forgerock/openam/uma/
H A DUmaProviderSettings.java2 * The contents of this file are subject to the terms of the Common Development and
38 Evaluator getPolicyEvaluator(Subject subject, String clientId) throws EntitlementException; argument
40 Evaluator getPolicyEvaluator(Subject subject) throws EntitlementException; argument
/forgerock/openam/openam-uma/src/main/java/org/forgerock/openam/uma/rest/
H A DUmaPolicyEvaluatorFactory.java2 * The contents of this file are subject to the terms of the Common Development and
32 * Given the subject looking to request policy decisions within an
35 * @param subject The subject looking to request policy decisions.
42 Evaluator getEvaluator(final Subject subject, final String application) throws EntitlementException; argument
/forgerock/openam-v13/openam-entitlements/src/main/java/org/forgerock/openam/entitlement/conditions/subject/
H A DAuthenticatedUsers.java2 * The contents of this file are subject to the terms of the Common Development and
19 package org.forgerock.openam.entitlement.conditions.subject;
40 * This subject applies to all users with valid <code>SSOToken</code>.
83 public SubjectDecision evaluate(String realm, SubjectAttributesManager mgr, javax.security.auth.Subject subject, argument
86 if (subject != null) {
87 SSOToken token = SubjectUtils.getSSOToken(subject);
H A DIdentitySubject.java6 * The contents of this file are subject to the terms
32 package org.forgerock.openam.entitlement.conditions.subject;
126 public SubjectDecision evaluate(String realm, SubjectAttributesManager mgr, Subject subject, String resourceName, argument
131 SSOToken token = SubjectUtils.getSSOToken(subject);
215 // got here so entry not in subject evalauation cache
218 + subjectValue + " not in subject evaluation "
256 + ", subject uuid = "
322 + userDN + ", subject "
334 + " is not a member of this subject");
337 + " is a member of this subject");
[all...]
/forgerock/openam/openam-entitlements/src/main/java/org/forgerock/openam/entitlement/conditions/subject/
H A DAuthenticatedUsers.java2 * The contents of this file are subject to the terms of the Common Development and
19 package org.forgerock.openam.entitlement.conditions.subject;
40 * This subject applies to all users with valid <code>SSOToken</code>.
83 public SubjectDecision evaluate(String realm, SubjectAttributesManager mgr, javax.security.auth.Subject subject, argument
86 if (subject != null) {
87 SSOToken token = SubjectUtils.getSSOToken(subject);
H A DIdentitySubject.java6 * The contents of this file are subject to the terms
30 package org.forgerock.openam.entitlement.conditions.subject;
131 public SubjectDecision evaluate(String realm, SubjectAttributesManager mgr, Subject subject, String resourceName, argument
136 SSOToken token = SubjectUtils.getSSOToken(subject);
219 // got here so entry not in subject evalauation cache
222 + subjectValue + " not in subject evaluation "
260 + ", subject uuid = "
323 + userDN + ", subject "
335 + " is not a member of this subject");
338 + " is a member of this subject");
[all...]
/forgerock/opendj-b2.6/src/server/org/opends/server/protocols/jmx/
H A DOpendsRMIJRMPServerImpl.java4 * The contents of this file are subject to the terms of the
76 protected RMIConnection makeClient(String connectionId, Subject subject) argument
79 if (subject != null)
81 Set<Credential> privateCreds = subject
89 return super.makeClient(connectionId, subject);
/forgerock/opendj2/src/server/org/opends/server/protocols/jmx/
H A DOpendsRMIJRMPServerImpl.java4 * The contents of this file are subject to the terms of the
75 protected RMIConnection makeClient(String connectionId, Subject subject) argument
78 if (subject != null)
80 Set<Credential> privateCreds = subject
88 return super.makeClient(connectionId, subject);
/forgerock/opendj2.6.2/src/server/org/opends/server/protocols/jmx/
H A DOpendsRMIJRMPServerImpl.java4 * The contents of this file are subject to the terms of the
76 protected RMIConnection makeClient(String connectionId, Subject subject) argument
79 if (subject != null)
81 Set<Credential> privateCreds = subject
89 return super.makeClient(connectionId, subject);
/forgerock/opendj2-jel-hg/src/server/org/opends/server/protocols/jmx/
H A DOpendsRMIJRMPServerImpl.java4 * The contents of this file are subject to the terms of the
76 protected RMIConnection makeClient(String connectionId, Subject subject) argument
79 if (subject != null)
81 Set<Credential> privateCreds = subject
89 return super.makeClient(connectionId, subject);
/forgerock/opendj2-hg/src/server/org/opends/server/protocols/jmx/
H A DOpendsRMIJRMPServerImpl.java4 * The contents of this file are subject to the terms of the
75 protected RMIConnection makeClient(String connectionId, Subject subject) argument
78 if (subject != null)
80 Set<Credential> privateCreds = subject
88 return super.makeClient(connectionId, subject);
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/authentication/internal/
H A DLoginModule.java6 * The contents of this file are subject to the terms
38 public void initialize(AuthSubject subject, CallbackHandler cb, argument
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/authentication/service/
H A DNoSessionActivator.java2 * The contents of this file are subject to the terms of the Common Development and
41 final InternalSession authSession, final Subject subject,
40 activateSession(final LoginState loginState, final SessionService sessionService, final InternalSession authSession, final Subject subject, final Object loginContext) argument
H A DSessionActivator.java2 * The contents of this file are subject to the terms of the Common Development and
36 * @param subject the authenticated subject.
42 InternalSession authSession, Subject subject, Object loginContext) throws AuthException;
41 activateSession(LoginState loginState, SessionService sessionService, InternalSession authSession, Subject subject, Object loginContext) argument
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/entitlement/
H A DAndCondition.java6 * The contents of this file are subject to the terms
67 * @param subject EntitlementCondition who is under evaluation.
74 public ConditionDecision evaluate(String realm, Subject subject, String resourceName, argument
91 ConditionDecision decision = condition.evaluate(realm, subject, resourceName, environment);
H A DAndSubject.java6 * The contents of this file are subject to the terms
61 * @param pSubjectName subject name as used in OpenAM policy,
74 * @param subject EntitlementSubject who is under evaluation.
84 Subject subject,
92 SubjectDecision decision = e.evaluate(realm, mgr, subject,
81 evaluate( String realm, SubjectAttributesManager mgr, Subject subject, String resourceName, Map<String, Set<String>> environment ) argument
H A DNoSubject.java6 * The contents of this file are subject to the terms
57 String realm, SubjectAttributesManager mgr, Subject subject,
56 evaluate( String realm, SubjectAttributesManager mgr, Subject subject, String resourceName, Map<String, Set<String>> environment ) argument
H A DOrCondition.java6 * The contents of this file are subject to the terms
69 * @param subject EntitlementCondition under evaluation.
75 public ConditionDecision evaluate(String realm, Subject subject, String resourceName, argument
92 ConditionDecision decision = condition.evaluate(realm, subject, resourceName, environment);
H A DOrSubject.java6 * The contents of this file are subject to the terms
62 * @param pSubjectName subject name as used in OpenAM policy,
75 * @param subject EntitlementSubject who is under evaluation.
85 Subject subject,
95 SubjectDecision decision = e.evaluate(realm, mgr, subject,
82 evaluate( String realm, SubjectAttributesManager mgr, Subject subject, String resourceName, Map<String, Set<String>> environment ) argument
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/entitlement/opensso/
H A DSubjectUtils.java6 * The contents of this file are subject to the terms
73 * Create the subject from the SSOToken ID.
86 public static SSOToken getSSOToken(Subject subject) { argument
87 Set set = subject.getPrivateCredentials();
99 public static String getPrincipalId(Subject subject) { argument
100 Set<Principal> userPrincipals = subject.getPrincipals();
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/sm/
H A DEntitlementIndexConfigFilter.java2 * The contents of this file are subject to the terms of the Common Development and
33 public boolean isAudited(String objectId, String realm, ConfigOperation operation, Subject subject) { argument
/forgerock/openam-v13/openam-core/src/main/java/org/forgerock/openam/authentication/service/activators/
H A DForceAuthSessionActivator.java2 * The contents of this file are subject to the terms of the Common Development and
44 final InternalSession authSession, final Subject subject, final Object loginContext)
53 return updateSessions(session, loginState, loginState.getOldSession(), authSession, sessionService, subject,
43 activateSession(final LoginState loginState, final SessionService sessionService, final InternalSession authSession, final Subject subject, final Object loginContext) argument
/forgerock/openam-v13/openam-core/src/main/java/org/forgerock/openam/entitlement/monitoring/
H A DEvaluationTimingStore.java2 * The contents of this file are subject to the terms of the Common Development and
40 * @param subject The subject against which the evaluation took place
42 public void addTiming(long duration, String realm, String applicationName, String resourceName, Subject subject) { argument
43 durationStore.add(new PolicyTimingEntry(duration, realm, applicationName, resourceName, subject));
H A DInternalEvaluationTimingStore.java2 * The contents of this file are subject to the terms of the Common Development and
39 * @param subject The subject against which the evaluation took place
42 String resourceName, Subject subject) {
44 durationStore.add(new PolicyTimingEntry(policyName, duration, realm, applicationName, resourceName, subject));
41 addTiming(String policyName, long duration, String realm, String applicationName, String resourceName, Subject subject) argument
H A DPolicyTimingEntry.java2 * The contents of this file are subject to the terms of the Common Development and
35 private final Subject subject; field in class:PolicyTimingEntry
44 * @param subject Subject against which the evaluation took place
46 public PolicyTimingEntry(long duration, String realm, String applicationName, String resourceName, Subject subject) { argument
47 this(null, duration, realm, applicationName, resourceName, subject);
58 * @param subject Subject against which the evaluation took place
61 String resourceName, Subject subject) {
67 this.subject = subject;
85 .append(getPrincipal(subject))
60 PolicyTimingEntry(String policyName, long duration, String realm, String applicationName, String resourceName, Subject subject) argument
96 getPrincipal(Subject subject) argument
[all...]

Completed in 111 milliseconds

1234567891011>>