Searched defs:subject (Results 176 - 200 of 517) sorted by relevance

1234567891011>>

/forgerock/openam-v13/openam-core/src/main/java/org/forgerock/openam/entitlement/
H A DCachingEntitlementCondition.java4 * The contents of this file are subject to the terms of the Common Development and
90 * @param subject {@inheritDoc}
96 public ConditionDecision evaluate(String realm, Subject subject, String resourceName, argument
102 return backingCondition.evaluate(realm, subject, resourceName, environment);
119 ConditionDecision result = backingCondition.evaluate(realm, subject, resourceName, environment);
/forgerock/openam-v13/openam-core/src/main/java/org/forgerock/openam/entitlement/monitoring/
H A DPolicyMonitor.java2 * The contents of this file are subject to the terms of the Common Development and
36 * @param subject The subject making the evaluation
39 void addEvaluation(long duration, String realm, String applicationName, String resourceName, Subject subject, argument
51 * @param subject The subject making the evaluation
54 String applicationName, String resourceName, Subject subject);
53 addEvaluation(String policyName, long duration, String realm, String applicationName, String resourceName, Subject subject) argument
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/liberty/ws/security/
H A DSessionContextStatement.java6 * The contents of this file are subject to the terms
67 * @param subject <code>Subject</code> object.
68 * @throws SAMLException if <code>sessionContext</code> is null or subject
72 Subject subject)
74 if ((sessionContext == null) || (subject ==null)) {
81 this._subject = subject;
91 * @param subject <code>Subject</code> object.
93 * subject is null.
97 Subject subject)
99 if ((sessionContext == null) || (subject
71 SessionContextStatement(SessionContext sessionContext, Subject subject) argument
95 SessionContextStatement(SessionContext sessionContext, ProxySubject proxySubject, Subject subject) argument
[all...]
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml/assertion/
H A DSubject.java6 * The contents of this file are subject to the terms
43 *An identification of a subject by its name and security domain.
45 *Information that allows the subject to be authenticated.
47 *If a <code>Subject</code> element contains more than one subject
104 * passing in the subject's <code>SubjectConfirmation</code> element.
106 * @param subject Subject to be checked.
107 * @return true if this object and <code>subject</code> are equals.
109 public boolean equals(Subject subject) { argument
112 if (subject != null) { // the ones passed as a parameter is not null
113 NameIdentifier nid = subject
[all...]
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/profile/
H A DAuthnQueryUtil.java6 * The contents of this file are subject to the terms
568 private static NameID getNameID(Subject subject, String realm, String authnAuthorityEntityID) { argument
569 NameID nameID = subject.getNameID();
571 EncryptedID encryptedID = subject.getEncryptedID();
H A DDiscoveryBootstrap.java6 * The contents of this file are subject to the terms
137 Subject subject, String wscID, String realm) throws SAML2Exception {
209 convertSPNameID(subject.getNameID()), providerID,
215 convertSC(subject.getSubjectConfirmation()),
216 convertIDPNameID(subject.getNameID()));
219 convertSPNameID(subject.getNameID()),
220 convertSC(subject.getSubjectConfirmation()),
221 convertIDPNameID(subject.getNameID()));
136 getResourceOffering(String authnContextClassRef, Subject subject, String wscID, String realm) argument
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/protocol/impl/
H A DSubjectQueryAbstractImpl.java6 * The contents of this file are subject to the terms
47 protected Subject subject; field in class:SubjectQueryAbstractImpl
56 return subject;
62 * @param subject the new <code>Subject</code> object.
66 public void setSubject(Subject subject) throws SAML2Exception { argument
71 this.subject = subject;
82 childElements.append(subject.toXMLString(includeNSPrefix,
87 if (subject == null) {
122 subject
[all...]
/forgerock/openam-v13/openam-scripting/src/main/java/org/forgerock/openam/scripting/service/
H A DScriptConfigurationService.java2 * The contents of this file are subject to the terms of the Common Development and
46 private final Subject subject; field in class:ScriptConfigurationService
53 * @param subject The subject requesting modification to the {@code ScriptConfiguration}.
59 @Assisted Subject subject, @Assisted String realm,
61 Reject.ifNull(subject, realm);
63 this.subject = subject;
65 this.dataStore = dataStoreFactory.create(subject, realm);
130 final String principalName = SubjectUtils.getPrincipalId(subject);
58 ScriptConfigurationService(@amed�) Logger logger, @Assisted Subject subject, @Assisted String realm, ScriptingDataStoreFactory dataStoreFactory) argument
[all...]
/forgerock/openam-v13/openam-sts/openam-token-service-sts/src/main/java/org/forgerock/openam/sts/tokengeneration/saml2/statements/
H A DDefaultSubjectProvider.java2 * The contents of this file are subject to the terms of the Common Development and
61 Subject subject = AssertionFactory.getInstance().createSubject();
62 setNameIdentifier(subject, subjectId, saml2Config.getNameIdFormat());
98 subject.setSubjectConfirmation(subjectConfirmationList);
99 return subject;
102 "Exception caught setting subject confirmation state in DefaultSubjectProvider: " + e, e);
106 private void setNameIdentifier(Subject subject, String subjectId, String nameIdFormat) throws TokenCreationException { argument
108 subject.setNameID(createNameIdentifier(subjectId, nameIdFormat));
/forgerock/jee-agents-v3.5/jee-agents-jsr196/src/main/java/com/sun/opensso/agents/jsr196/
H A DOpenSSORequestHandler.java6 * The contents of this file are subject to the terms
120 * @param subject
127 public boolean shouldAuthenticate(Subject subject, HttpServletRequest request, argument
138 if(setTokenInSubject(subject, request)) {
185 * @param subject
189 public String getAuthPrincipal(HttpServletRequest request, Subject subject) { argument
215 * @param subject
219 public String[] getAuthGroup(HttpServletRequest request, Subject subject) { argument
250 * @param subject
255 private boolean setTokenInSubject(Subject subject, argument
285 addSSOToken(SSOToken ssoToken, Subject subject) argument
[all...]
H A DOpenSSOServerAuthModule.java6 * The contents of this file are subject to the terms
117 public void cleanSubject(MessageInfo messageInfo, Subject subject) argument
120 if(subject == null) {
/forgerock/openam-v13/openam-authentication/deviceprint/module/src/main/java/org/forgerock/openam/authentication/modules/deviceprint/
H A DDevicePrintModule.java6 * The contents of this file are subject to the terms
79 public void init(Subject subject, Map sharedState, Map options) { argument
/forgerock/openam-v13/openam-authentication/openam-auth-common/src/main/java/org/forgerock/openam/authentication/modules/common/
H A DAuthLoginModule.java2 * The contents of this file are subject to the terms of the Common Development and
60 * @param subject The Subject to be authenticated.
67 public abstract void init(Subject subject, Map sharedState, Map options); argument
/forgerock/openam-v13/openam-authentication/openam-auth-device-id/src/main/java/org/forgerock/openam/authentication/modules/deviceprint/
H A DDeviceIdSave.java2 * The contents of this file are subject to the terms of the Common Development and
67 public void init(Subject subject, Map sharedState, Map config) { argument
/forgerock/openam-v13/openam-authentication/openam-auth-hotp/src/main/java/com/sun/identity/authentication/modules/hotp/
H A DDefaultSMSGatewayImpl.java6 * The contents of this file are subject to the terms
62 public void sendSMSMessage(String from, String to, String subject, argument
82 sendMail.postMail(tos, subject, msg, from);
84 sendMail.postMail(tos, subject, msg, from, "UTF-8", smtpHostName,
103 public void sendEmail(String from, String to, String subject, argument
105 sendSMSMessage(from, to, subject, message, code, options);
/forgerock/openam-v13/openam-authentication/openam-auth-oauth2/src/main/java/org/forgerock/openam/authentication/modules/oauth2/
H A DDefaultEmailGatewayImpl.java6 * The contents of this file are subject to the terms
60 * @param subject The E-mail subject
65 public void sendEmail(String from, String to, String subject, argument
84 sendMail.postMail(tos, subject, message, from);
88 sendMail.postMail(tos, subject, message, from, "UTF-8", smtpHostName,
/forgerock/openam-v13/openam-authentication/openam-auth-oidc/src/main/java/org/forgerock/openam/authentication/modules/oidc/
H A DOpenIdConnect.java2 * The contents of this file are subject to the terms of the Common Development and
64 public void init(Subject subject, Map sharedState, Map options) { argument
/forgerock/openam-v13/openam-distribution/src/main/amserver/samples/server/source/com/sun/identity/samples/authentication/spi/providers/
H A DLoginModuleSample.java6 * The contents of this file are subject to the terms
64 * @param subject
68 public void init(Subject subject, Map sharedState, Map options) { argument
/forgerock/openam-v13/openam-entitlements/src/main/java/com/sun/identity/entitlement/
H A DEntitlementSubjectImpl.java6 * The contents of this file are subject to the terms
58 * @param uuid the universal ID of subject.
67 * @param uuid is the universal ID of subject.
68 * @param pSubjectName subject name as used in OpenAM policy,
151 * Sets OpenAM policy subject name of the object
152 * @param pSubjectName subject name as used in OpenAM policy,
161 * Returns OpenAM policy subject name of the object
162 * @return subject name as used in OpenAM policy,
226 protected boolean hasPrincipal(Subject subject, String uuid) { argument
227 Set<Principal> userPrincipals = subject
[all...]
/forgerock/openam-v13/openam-entitlements/src/main/java/com/sun/identity/entitlement/opensso/
H A DOpenSSOSubjectAttributesCollector.java6 * The contents of this file are subject to the terms
109 * @param subject identity of the user
116 Subject subject,
119 String uuid = SubjectUtils.getPrincipalId(subject);
176 Set<Object> publicCreds = subject.getPublicCredentials();
203 * @param subject identity of the user
212 Subject subject,
216 String uuid = SubjectUtils.getPrincipalId(subject);
287 * @param subject identity of the user.
294 Subject subject,
115 getAttributes( Subject subject, Set<String> attrNames ) argument
211 hasAttribute( Subject subject, String attrName, String attrValue ) argument
293 getUserAttributes( Subject subject, Set<String> attrNames ) argument
[all...]
/forgerock/openam-v13/openam-entitlements/src/main/java/org/forgerock/openam/entitlement/conditions/environment/
H A DAuthenticateToRealmCondition.java2 * The contents of this file are subject to the terms of the Common Development and
102 public ConditionDecision evaluate(String realm, Subject subject, String resourceName, Map<String, Set<String>> env) argument
115 SSOToken token = (subject == null) ? null : (SSOToken) subject.getPrivateCredentials().iterator().next();
H A DLDAPFilterCondition.java2 * The contents of this file are subject to the terms of the Common Development and
82 public ConditionDecision evaluate(String realm, Subject subject, String resourceName, Map<String, Set<String>> env) argument
85 if (subject == null) {
89 SSOToken token = (SSOToken) getValue(subject.getPrivateCredentials());
/forgerock/openam-v13/openam-entitlements/src/main/java/org/forgerock/openam/entitlement/rest/wrappers/
H A DApplicationManagerWrapper.java2 * The contents of this file are subject to the terms of the Common Development and
94 * @param subject The subject authorizing the update - will be validated for permission.
98 public void updateApplication(Application oldApplication, Application newApplication, Subject subject, String realm) argument
100 ApplicationManager.updateApplication(oldApplication, newApplication, subject, realm);
107 * @param subject The subject authorizing the update - will be validated for permission.
114 public Set<String> search(Subject subject, String realm, Set<SearchFilter> searchFilters) argument
116 return ApplicationManager.search(subject, realm, searchFilters);
/forgerock/openam-v13/openam-entitlements/src/main/java/org/forgerock/openam/entitlement/service/
H A DResourceTypeServiceImpl.java2 * The contents of this file are subject to the terms of the Common Development and
52 public ResourceType saveResourceType(Subject subject, String realm, ResourceType resourceType) argument
56 if (configuration.containsName(subject, realm, name)) {
60 final ResourceType updatedResourceType = setMetaData(subject, realm, resourceType);
61 configuration.storeResourceType(subject, realm, updatedResourceType);
66 private String getPrincipalName(Subject subject) { argument
67 final Set<Principal> principals = subject.getPrincipals();
71 private ResourceType setMetaData(Subject subject, String realm, ResourceType resourceType) argument
75 final String principalName = getPrincipalName(subject);
76 final ResourceType oldResourceType = getResourceType(subject, real
97 deleteResourceType(Subject subject, String realm, String uuid) argument
110 getResourceType(Subject subject, String realm, String uuid) argument
118 updateResourceType(Subject subject, String realm, ResourceType resourceType) argument
143 contains(Subject subject, String realm, String id) argument
148 getResourceTypes(QueryFilter<SmsAttribute> filter, Subject subject, String realm) argument
154 getResourceTypesData(Subject subject, String realm) argument
[all...]
/forgerock/openam-v13/openam-entitlements/src/test/java/com/sun/identity/entitlement/xacml3/
H A DResourceAttributeUtilTest.java2 * The contents of this file are subject to the terms of the Common Development and
100 public Map<String, Set<String>> evaluate(Subject adminSubject, String realm, Subject subject, String resourceName, Map<String, Set<String>> environment) throws EntitlementException { argument

Completed in 111 milliseconds

1234567891011>>