/forgerock/openam-v13/openam-core/src/main/java/org/forgerock/openam/auditors/ |
H A D | SMSAuditFilter.java | 2 * 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 D | SubjectQuery.java | 6 * 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 D | SubjectQueryAbstract.java | 6 * 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 D | PrincipalRestUtils.java | 2 * 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 D | ScriptingDataStoreFactory.java | 2 * 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 D | ScriptingServiceFactory.java | 2 * 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 D | PolicyEvaluatorFactory.java | 2 * 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 D | ApplicationServiceFactory.java | 2 * 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 D | ApplicationServiceImpl.java | 2 * 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 D | DefaultPrivilegeManagerFactory.java | 2 * 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 D | PrivilegeManagerFactory.java | 2 * 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 D | UmaProviderSettings.java | 2 * 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 D | UmaPolicyEvaluatorFactory.java | 2 * 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 D | PatchValueTransformer.java | 2 * 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 D | reconStats.js | 29 subject : "Recon stats for " + global.mappingName,
|
/forgerock/openam/openam-rest/src/main/java/org/forgerock/openam/forgerockrest/utils/ |
H A D | PrincipalRestUtils.java | 2 * 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 D | SMSAuditFilter.java | 2 * 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 D | ApplicationServiceFactory.java | 2 * 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 D | EntitlementConfigurationFactory.java | 2 * 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 D | PolicyEvaluatorFactory.java | 2 * 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 D | ApplicationServiceFactoryImpl.java | 2 * 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 D | DefaultPrivilegeManagerFactory.java | 2 * 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 D | PrivilegeManagerFactory.java | 2 * 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 D | SubjectQuery.java | 6 * 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 D | SubjectQueryAbstract.java | 6 * 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
|