Searched defs:subject (Results 1 - 25 of 517) sorted by relevance

1234567891011>>

/forgerock/openam-v13/openam-core/src/main/java/org/forgerock/openam/auditors/
H A DSMSAuditFilter.java2 * The contents of this file are subject to the terms of the Common Development and
34 * @param subject The subject the operation is being performed as (not necessarily the logged in user)
37 boolean isAudited(String objectId, String realm, ConfigOperation operation, Subject subject); argument
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml/protocol/
H A DSubjectQuery.java6 * The contents of this file are subject to the terms
36 * subject. It corresponds to
43 protected Subject subject = null; field in class:SubjectQuery
56 return subject;
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/protocol/
H A DSubjectQueryAbstract.java6 * The contents of this file are subject to the terms
66 * @param subject the new <code>Subject</code> object.
70 public void setSubject(Subject subject) throws SAML2Exception; argument
/forgerock/openam-v13/openam-rest/src/main/java/org/forgerock/openam/forgerockrest/utils/
H A DPrincipalRestUtils.java2 * The contents of this file are subject to the terms of the Common Development and
42 Subject subject = context.asContext(SubjectContext.class).getCallerSubject();
44 return getPrincipalNameFromSubject(subject);
48 * Returns the authenticated principal associated with this subject.
50 * @return the authenticated principal associated with this subject, or null if not authenticated.
52 public static String getPrincipalNameFromSubject(Subject subject) { argument
53 if (subject == null) {
57 Principal[] principalArray = (subject.getPrincipals().toArray(new Principal[subject.getPrincipals().size()]));
/forgerock/openam-v13/openam-scripting/src/main/java/org/forgerock/openam/scripting/datastore/
H A DScriptingDataStoreFactory.java2 * The contents of this file are subject to the terms of the Common Development and
26 * Creates a new scripting data store instance based on the calling subject for the passed realm.
27 * @param subject the calling subject
31 ScriptingDataStore create(Subject subject, String realm); argument
/forgerock/openam-v13/openam-scripting/src/main/java/org/forgerock/openam/scripting/service/
H A DScriptingServiceFactory.java2 * The contents of this file are subject to the terms of the Common Development and
27 * Creates a new scripting service instance based on the calling subject for the passed realm.
28 * @param subject the calling subject
32 ScriptingService create(Subject subject, String realm); argument
/forgerock/openam-v13/openam-entitlements/src/main/java/org/forgerock/openam/entitlement/rest/
H A DPolicyEvaluatorFactory.java2 * The contents of this file are subject to the terms of the Common Development and
31 * Given the subject looking to request policy decisions within an
34 * @param subject
35 * the subject looking to request policy decisions
44 public PolicyEvaluator getEvaluator(final Subject subject, final String application) throws EntitlementException; argument
/forgerock/openam-v13/openam-entitlements/src/main/java/org/forgerock/openam/entitlement/service/
H A DApplicationServiceFactory.java2 * The contents of this file are subject to the terms of the Common Development and
28 * Creates a new application service instance based on the calling subject for the passed realm.
30 * @param subject
31 * the calling subject
37 ApplicationService create(Subject subject, String realm); argument
H A DApplicationServiceImpl.java2 * The contents of this file are subject to the terms of the Common Development and
34 private final Subject subject; field in class:ApplicationServiceImpl
38 public ApplicationServiceImpl(@Assisted final Subject subject, @Assisted final String realm) { argument
39 Reject.ifNull(subject, realm);
40 this.subject = subject;
46 return ApplicationManager.getApplication(subject, realm, applicationName);
H A DDefaultPrivilegeManagerFactory.java2 * The contents of this file are subject to the terms of the Common Development and
31 public PrivilegeManager get(String realm, Subject subject) { argument
32 return PrivilegeManager.getInstance(realm, subject);
H A DPrivilegeManagerFactory.java2 * The contents of this file are subject to the terms of the Common Development and
31 * Gets a privilege manager for the given realm and admin subject.
34 * @param subject the subject to use to perform management actions.
37 PrivilegeManager get(String realm, Subject subject); argument
/forgerock/openam-v13/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-v13/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/openidm-v4/openidm-util/src/main/java/org/forgerock/openidm/patch/
H A DPatchValueTransformer.java2 * The contents of this file are subject to the terms of the Common Development and
32 * @param subject the patch subject document. Subject is unused by default, made available
37 public Object getTransformedValue(PatchOperation patch, JsonValue subject) throws JsonValueException; argument
/forgerock/openidm-v4/openidm-zip/src/main/resources/samples/sample5/script/
H A DreconStats.js29 subject : "Recon stats for " + global.mappingName,
/forgerock/openam/openam-rest/src/main/java/org/forgerock/openam/forgerockrest/utils/
H A DPrincipalRestUtils.java2 * The contents of this file are subject to the terms of the Common Development and
42 Subject subject = context.asContext(SubjectContext.class).getCallerSubject();
44 return getPrincipalNameFromSubject(subject);
48 * Returns the authenticated principal associated with this subject.
50 * @return the authenticated principal associated with this subject, or null if not authenticated.
52 public static String getPrincipalNameFromSubject(Subject subject) { argument
53 if (subject == null) {
57 Principal[] principalArray = (subject.getPrincipals().toArray(new Principal[subject.getPrincipals().size()]));
/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/auditors/
H A DSMSAuditFilter.java2 * The contents of this file are subject to the terms of the Common Development and
34 * @param subject The subject the operation is being performed as (not necessarily the logged in user)
37 boolean isAudited(String objectId, String realm, ConfigOperation operation, Subject subject); argument
/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/entitlement/service/
H A DApplicationServiceFactory.java2 * The contents of this file are subject to the terms of the Common Development and
28 * Creates a new application service instance based on the calling subject for the passed realm.
30 * @param subject
31 * the calling subject
37 ApplicationService create(Subject subject, String realm); argument
H A DEntitlementConfigurationFactory.java2 * The contents of this file are subject to the terms of the Common Development and
28 * Creates a new {@link EntitlementConfiguration} instance based on the calling subject for the passed realm.
30 * @param subject the calling subject
34 EntitlementConfiguration create(Subject subject, String realm); argument
/forgerock/openam/openam-entitlements/src/main/java/org/forgerock/openam/entitlement/rest/
H A DPolicyEvaluatorFactory.java2 * The contents of this file are subject to the terms of the Common Development and
31 * Given the subject looking to request policy decisions within an
34 * @param subject
35 * the subject looking to request policy decisions
44 public PolicyEvaluator getEvaluator(final Subject subject, final String application) throws EntitlementException; argument
/forgerock/openam/openam-entitlements/src/main/java/org/forgerock/openam/entitlement/service/
H A DApplicationServiceFactoryImpl.java2 * The contents of this file are subject to the terms of the Common Development and
42 public ApplicationService create(Subject subject, String realm) { argument
46 public EntitlementConfiguration create(Subject subject, String realm) {
47 return new EntitlementService(subject, realm, NULL_BROKER);
51 applicationService = new ApplicationServiceImpl(subject, realm, factory, new ResourceTypeServiceImpl(
H A DDefaultPrivilegeManagerFactory.java2 * The contents of this file are subject to the terms of the Common Development and
31 public PrivilegeManager get(String realm, Subject subject) { argument
32 return PrivilegeManager.getInstance(realm, subject);
H A DPrivilegeManagerFactory.java2 * The contents of this file are subject to the terms of the Common Development and
31 * Gets a privilege manager for the given realm and admin subject.
34 * @param subject the subject to use to perform management actions.
37 PrivilegeManager get(String realm, Subject subject); argument
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml/protocol/
H A DSubjectQuery.java6 * The contents of this file are subject to the terms
36 * subject. It corresponds to
43 protected Subject subject = null; field in class:SubjectQuery
56 return subject;
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/protocol/
H A DSubjectQueryAbstract.java6 * The contents of this file are subject to the terms
69 * @param subject the new <code>Subject</code> object.
73 public void setSubject(Subject subject) throws SAML2Exception; argument

Completed in 103 milliseconds

1234567891011>>