/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/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-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-entitlements/src/main/java/org/forgerock/openam/entitlement/service/ |
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);
|
/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/openidm-v4/openidm-util/src/main/java/org/forgerock/openidm/patch/ |
H A D | JsonValuePatch.java | 6 * The contents of this file are subject to the terms 43 private static boolean add(JsonValue subject, PatchOperation operation) throws BadRequestException { argument 47 subject.putPermissive(operation.getField(), operation.getValue().getObject()); 52 private static boolean remove(JsonValue subject, PatchOperation operation) throws BadRequestException { argument 56 final JsonValue current = subject.get(operation.getField()); 62 subject.remove(operation.getField()); 75 subject.remove(operation.getField()); 84 private static boolean replace(JsonValue subject, PatchOperation operation) throws BadRequestException { argument 88 subject.remove(operation.getField()); 90 subject 96 increment(JsonValue subject, PatchOperation operation) argument 130 move(JsonValue subject, PatchOperation operation) argument 146 copy(JsonValue subject, PatchOperation operation) argument 161 transform(JsonValue subject, PatchOperation operation, PatchValueTransformer transformer) argument 177 unknown(JsonValue subject, PatchOperation operation) argument 215 apply(JsonValue subject, List<PatchOperation> operations) argument 227 apply(JsonValue subject, List<PatchOperation> operations, PatchValueTransformer transformer) argument [all...] |
/forgerock/openam-v13/openam-core/src/main/java/org/forgerock/openam/entitlement/monitoring/ |
H A D | PolicyTimingEntry.java | 2 * 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...] |
/forgerock/openam-v13/openam-authentication/openam-auth-saml2/src/main/java/org/forgerock/openam/authentication/modules/saml2/ |
H A D | SAML2ResponseData.java | 2 * The contents of this file are subject to the terms of the Common Development and 28 private Subject subject; field in class:SAML2ResponseData 44 * @param subject Subject about whom this authentication provides information. 45 * @param assertion Assertion for this subject's authentication. 48 public SAML2ResponseData(String sessionIndex, Subject subject, Assertion assertion, ResponseInfo responseInfo) { argument 49 Reject.ifNull(sessionIndex, subject, assertion, responseInfo); 51 this.subject = subject; 58 * Sets the subject value. 60 * @param subject valu 62 setSubject(Subject subject) argument [all...] |
/forgerock/openam-v13/openam-entitlements/src/main/java/org/forgerock/openam/entitlement/rest/wrappers/ |
H A D | ApplicationTypeManagerWrapper.java | 2 * The contents of this file are subject to the terms of the Common Development and 35 * @param subject The user requesting the ApplicationType 39 public ApplicationType getApplicationType(Subject subject, String name) { argument 40 return ApplicationTypeManager.getAppplicationType(subject, name); 46 * @param subject The user requesting the names 49 public Set<String> getApplicationTypeNames(Subject subject) { argument 50 return ApplicationTypeManager.getApplicationTypeNames(subject);
|
/forgerock/openam/openam-authentication/openam-auth-saml2/src/main/java/org/forgerock/openam/authentication/modules/saml2/ |
H A D | SAML2ResponseData.java | 2 * The contents of this file are subject to the terms of the Common Development and 28 private Subject subject; field in class:SAML2ResponseData 44 * @param subject Subject about whom this authentication provides information. 45 * @param assertion Assertion for this subject's authentication. 48 public SAML2ResponseData(String sessionIndex, Subject subject, Assertion assertion, ResponseInfo responseInfo) { argument 49 Reject.ifNull(sessionIndex, subject, assertion, responseInfo); 51 this.subject = subject; 58 * Sets the subject value. 60 * @param subject valu 62 setSubject(Subject subject) argument [all...] |
/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/entitlement/monitoring/ |
H A D | PolicyTimingEntry.java | 2 * 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...] |
/forgerock/openam/openam-entitlements/src/main/java/org/forgerock/openam/entitlement/rest/wrappers/ |
H A D | ApplicationTypeManagerWrapper.java | 2 * The contents of this file are subject to the terms of the Common Development and 35 * @param subject The user requesting the ApplicationType 39 public ApplicationType getApplicationType(Subject subject, String name) { argument 40 return ApplicationTypeManager.getAppplicationType(subject, name); 46 * @param subject The user requesting the names 49 public Set<String> getApplicationTypeNames(Subject subject) { argument 50 return ApplicationTypeManager.getApplicationTypeNames(subject);
|
/forgerock/openam/openam-push-notification/src/main/java/org/forgerock/openam/services/push/ |
H A D | PushMessage.java | 2 * The contents of this file are subject to the terms of the Common Development and 32 private final String subject; field in class:PushMessage 39 * @param subject The subject to contain within the message. May not be null. 43 public PushMessage(String recipient, String body, String subject, String messageId) { argument 46 Reject.ifNull(subject); 50 this.subject = subject; 63 * @param subject The subject t 65 PushMessage(String recipient, String body, String subject) argument [all...] |
/forgerock/openam/openam-entitlements/src/main/java/org/forgerock/openam/entitlement/service/ |
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);
|
/forgerock/openam-v13/openam-core/src/main/java/org/forgerock/openam/services/email/ |
H A D | MailServer.java | 4 * The contents of this file are subject to the terms 46 * @param subject The E-mail subject. 50 void sendHtmlEmail(String to, String subject, String message) throws MessagingException; argument 58 * @param subject The E-mail subject. 63 void sendHtmlEmail(String from, String to, String subject, String message, Map<String, Set<String>> options) argument 72 * @param subject The E-mail subject 77 void sendEmail(String from, String to, String subject, argument 87 sendEmail(String to, String subject, String message) argument 104 sendEmail(String to, String subject, String message, String mimeType) argument [all...] |
/forgerock/openam-v13/openam-coretoken/src/main/java/com/sun/identity/coretoken/spi/ |
H A D | CoreTokenStore.java | 6 * The contents of this file are subject to the terms 45 * @param subject Subject of the caller. 52 public String createToken(Subject subject, argument 59 * @param subject Subject of the caller. 64 public String readToken(Subject subject, String tokenId) argument 70 * @param subject Subject of the caller 76 public void deleteToken(Subject subject, String tokenId) argument 81 * @param subject Subject of the caller 87 public JSONArray searchTokens (Subject subject, argument 92 * @param subject calle 100 updateToken(Subject subject, String tokenId, String eTag, JSONObject newVals) argument [all...] |
/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/services/email/ |
H A D | MailServer.java | 4 * The contents of this file are subject to the terms 46 * @param subject The E-mail subject. 50 void sendHtmlEmail(String to, String subject, String message) throws MessagingException; argument 58 * @param subject The E-mail subject. 63 void sendHtmlEmail(String from, String to, String subject, String message, Map<String, Set<String>> options) argument 72 * @param subject The E-mail subject 77 void sendEmail(String from, String to, String subject, argument 87 sendEmail(String to, String subject, String message) argument 104 sendEmail(String to, String subject, String message, String mimeType) argument [all...] |
/forgerock/openam/openam-coretoken/src/main/java/com/sun/identity/coretoken/spi/ |
H A D | CoreTokenStore.java | 6 * The contents of this file are subject to the terms 45 * @param subject Subject of the caller. 52 public String createToken(Subject subject, argument 59 * @param subject Subject of the caller. 64 public String readToken(Subject subject, String tokenId) argument 70 * @param subject Subject of the caller 76 public void deleteToken(Subject subject, String tokenId) argument 81 * @param subject Subject of the caller 87 public JSONArray searchTokens (Subject subject, argument 92 * @param subject calle 100 updateToken(Subject subject, String tokenId, String eTag, JSONObject newVals) argument [all...] |
/forgerock/openam-v13/openam-core/src/main/java/org/forgerock/openam/entitlement/service/ |
H A D | ResourceTypeService.java | 2 * The contents of this file are subject to the terms of the Common Development and 37 * @param subject The subject with privilege to create resource types. 43 public ResourceType saveResourceType(Subject subject, String realm, ResourceType resourceType) argument 48 * @param subject The subject with privilege to delete resource types in this realm. 53 public void deleteResourceType(Subject subject, String realm, String uuid) throws EntitlementException; argument 57 * @param subject The subject with privilege to access the resource types in this realm. 64 public Map<String, Map<String, Set<String>>> getResourceTypesData(Subject subject, Strin argument 75 getResourceType(Subject subject, String realm, String uuid) argument 85 updateResourceType(Subject subject, String realm, ResourceType resourceType) argument 103 contains(Subject subject, String realm, String id) argument 120 getResourceTypes(QueryFilter<SmsAttribute> filter, Subject subject, String realm) argument [all...] |
/forgerock/openam-v13/openam-entitlements/src/main/java/org/forgerock/openam/entitlement/configuration/ |
H A D | ResourceTypeConfiguration.java | 2 * The contents of this file are subject to the terms of the Common Development and 33 * @param subject The subject for whom the resource type should be retrieved. 39 public ResourceType getResourceType(Subject subject, String realm, String uuid) throws EntitlementException; argument 43 * @param subject The subject for whom the resource type should be retrieved. 48 public boolean containsUUID(Subject subject, String realm, String uuid) throws EntitlementException; argument 52 * @param subject The subject for whom the resource type should be retrieved. 57 public boolean containsName(Subject subject, Strin argument 66 removeResourceType(Subject subject, String realm, String uuid) argument 75 storeResourceType(Subject subject, String realm, ResourceType resourceType) argument 92 getResourceTypes(QueryFilter<SmsAttribute> filter, Subject subject, String realm) argument 104 getResourceTypesData(Subject subject, String realm) argument [all...] |
/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/entitlement/service/ |
H A D | ResourceTypeService.java | 2 * The contents of this file are subject to the terms of the Common Development and 37 * @param subject The subject with privilege to create resource types. 43 public ResourceType saveResourceType(Subject subject, String realm, ResourceType resourceType) argument 48 * @param subject The subject with privilege to delete resource types in this realm. 53 public void deleteResourceType(Subject subject, String realm, String uuid) throws EntitlementException; argument 57 * @param subject The subject with privilege to access the resource types in this realm. 64 public Map<String, Map<String, Set<String>>> getResourceTypesData(Subject subject, Strin argument 75 getResourceType(Subject subject, String realm, String uuid) argument 85 updateResourceType(Subject subject, String realm, ResourceType resourceType) argument 103 contains(Subject subject, String realm, String id) argument 120 getResourceTypes(QueryFilter<SmsAttribute> filter, Subject subject, String realm) argument [all...] |
/forgerock/openam/openam-entitlements/src/main/java/org/forgerock/openam/entitlement/configuration/ |
H A D | ResourceTypeConfiguration.java | 2 * The contents of this file are subject to the terms of the Common Development and 33 * @param subject The subject for whom the resource type should be retrieved. 39 public ResourceType getResourceType(Subject subject, String realm, String uuid) throws EntitlementException; argument 43 * @param subject The subject for whom the resource type should be retrieved. 48 public boolean containsUUID(Subject subject, String realm, String uuid) throws EntitlementException; argument 52 * @param subject The subject for whom the resource type should be retrieved. 57 public boolean containsName(Subject subject, Strin argument 66 removeResourceType(Subject subject, String realm, String uuid) argument 75 storeResourceType(Subject subject, String realm, ResourceType resourceType) argument 92 getResourceTypes(QueryFilter<SmsAttribute> filter, Subject subject, String realm) argument 104 getResourceTypesData(Subject subject, String realm) argument [all...] |
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml/assertion/ |
H A D | SubjectStatement.java | 6 * The contents of this file are subject to the terms 40 * that allows issuer to describe a subject. Its 48 //The subject 60 * @return The subject within the statement. 69 * @param subject A Subject object. 72 public boolean setSubject(Subject subject) { argument 73 if (subject == null) { 80 _subject = subject;
|
/forgerock/jee-agents-v3.5/jee-agents-jsr196/src/main/java/com/sun/opensso/agents/jsr196/ |
H A D | IOpenSSORequestHandler.java | 6 * The contents of this file are subject to the terms 57 * @param subject the subject that may be used by the callers 69 public boolean shouldAuthenticate(Subject subject, argument 85 * Returns the principal related to the subject 89 * @param subject the Subject 94 public String getAuthPrincipal(HttpServletRequest request, Subject subject); argument 104 * @param subject 109 public String[] getAuthGroup(HttpServletRequest request, Subject subject); argument
|