Searched defs:subject (Results 151 - 175 of 517) sorted by relevance

1234567891011>>

/forgerock/openam/openam-core/src/main/java/com/sun/identity/idsvcs/
H A DIdentityServices.java6 * The contents of this file are subject to the terms
43 * Retrieve user details (roles, attributes) for the subject.
46 * @param subject Token for subject.
47 * @return User details for the subject.
53 UserDetails attributes(List attributeNames, Token subject, boolean refresh) throws TokenExpired, GeneralFailure, argument
60 * @param subject Optional token identifying the subject for which the log
67 void log(Token app, Token subject, String logName, String message) throws AccessDenied, TokenExpired, argument
78 * @return IdentityDetails of the subject
[all...]
/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/entitlement/service/
H A DResourceTypeService.java2 * 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-coretoken/src/main/java/com/sun/identity/coretoken/spi/
H A DCoreTokenStore.java6 * 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-entitlements/src/main/java/com/sun/identity/entitlement/
H A DAnyUserSubject.java6 * The contents of this file are subject to the terms
48 Subject subject,
45 evaluate( String realm, SubjectAttributesManager mgr, Subject subject, String resourceName, Map<String, Set<String>> environment) argument
H A DGroupSubject.java6 * The contents of this file are subject to the terms
70 * @param pSubjectName subject name as used in OpenAM policy,
83 * @param subject EntitlementSubject who is under evaluation.
94 Subject subject,
100 Set publicCreds = subject.getPublicCredentials();
145 * Returns <code>true</code> is this subject is an identity object.
147 * @return <code>true</code> is this subject is an identity object.
91 evaluate( String realm, SubjectAttributesManager mgr, Subject subject, String resourceName, Map<String, Set<String>> environment) argument
/forgerock/openam/openam-entitlements/src/main/java/com/sun/identity/entitlement/opensso/
H A DOpenSSOGroupSubject.java6 * The contents of this file are subject to the terms
85 * @param pSubjectName subject name as used in OpenAM policy,
98 * @param subject EntitlementSubject who is under evaluation.
110 Subject subject,
117 Set publicCreds = subject.getPublicCredentials();
156 if (isMember(subject, type, idGroup)) {
219 Subject subject,
223 Set<Principal> userPrincipals = subject.getPrincipals();
107 evaluate( String realm, SubjectAttributesManager mgr, Subject subject, String resourceName, Map<String, Set<String>> environment) argument
218 isMember( Subject subject, IdType type, AMIdentity idGroup ) argument
/forgerock/openam/openam-entitlements/src/main/java/org/forgerock/openam/entitlement/configuration/
H A DResourceTypeConfiguration.java2 * 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-entitlements/src/main/java/org/forgerock/openam/entitlement/rest/
H A DEntitlementEvaluatorFactory.java2 * The contents of this file are subject to the terms of the Common Development and
44 public PolicyEvaluator getEvaluator(final Subject subject, final String application) throws EntitlementException { argument
45 return new EntitlementEvaluatorWrapper(new Evaluator(subject, application));
/forgerock/openam/openam-entitlements/src/main/java/org/forgerock/openam/xacml/v3/
H A DResourceTypeImportStep.java2 * The contents of this file are subject to the terms of the Common Development and
39 private Subject subject; field in class:ResourceTypeImportStep
52 * @param subject
53 * admin subject.
56 ResourceTypeService resourceTypeService, String realm, Subject subject) {
61 this.subject = subject;
83 resourceTypeService.saveResourceType(subject, realm, resourceType);
86 resourceTypeService.updateResourceType(subject, realm, resourceType);
55 ResourceTypeImportStep(DiffStatus diffStatus, ResourceType resourceType, ResourceTypeService resourceTypeService, String realm, Subject subject) argument
H A DXACMLApplicationUtils.java2 * The contents of this file are subject to the terms of the Common Development and
55 * @param subject
56 * Admin subject.
65 public ApplicationType getApplicationType(Subject subject, String applicationName) argument
67 ApplicationType applicationType = getAppplicationType(subject, applicationName);
69 applicationType = getAppplicationType(subject, URL_APPLICATION_TYPE_NAME);
/forgerock/openam/openam-entitlements/src/test/java/org/forgerock/openam/entitlement/rest/
H A DStubPrivilege.java2 * The contents of this file are subject to the terms of the Common Development and
47 public List<Entitlement> evaluate(Subject adminSubject, String realm, Subject subject, String applicationName, argument
/forgerock/openam/openam-federation/OpenFM/src/test/java/com/sun/identity/entitlement/
H A DApplicationServiceTestHelper.java2 * The contents of this file are subject to the terms of the Common Development and
34 private static ApplicationService getApplicationService(Subject subject, String realm) { argument
35 return EntitlementUtils.getApplicationService(subject, realm);
41 * @param subject Subject with rights to access configuration datastore.
47 public static Set<Application> search(Subject subject, String realm, QueryFilter<String> queryFilter) argument
49 return getApplicationService(subject, realm).search(queryFilter);
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml/assertion/
H A DAttributeStatement.java6 * The contents of this file are subject to the terms
41 *that the specified subject is associated with the specified attributes.
103 "should not contain more than one subject.");
142 // check if the subject is null
165 * @param subject (required) A Subject object.
169 public AttributeStatement(Subject subject, List attribute) argument
171 // check if the subject is null
172 if (subject == null) {
175 "missing subject.");
180 this._subject = subject;
[all...]
H A DAuthorizationDecisionStatement.java6 * The contents of this file are subject to the terms
39 *by the issuer that the request for access by the specified subject to the
71 * @param subject (required) A Subject object
83 public AuthorizationDecisionStatement(Subject subject, String resource, argument
86 super(subject, resource, decision, action, evidence);
92 *@param subject (required) A Subject object
103 public AuthorizationDecisionStatement(Subject subject, String resource, argument
105 super(subject, resource, decision, action);
/forgerock/openam/openam-uma/src/main/java/org/forgerock/openam/uma/
H A DUmaAuditFilter.java2 * The contents of this file are subject to the terms of the Common Development and
48 public boolean isAudited(String objectId, String realm, ConfigOperation operation, Subject subject) { argument
/forgerock/openam-v13/openam-rest/src/main/java/org/forgerock/openam/rest/resource/
H A DSSOTokenContext.java4 * The contents of this file are subject to the terms of the Common Development and
45 * CREST context that provides a convenience method for getting hold of the caller as an authenticated subject based
52 private final Supplier<Subject> subject; field in class:SSOTokenContext
68 this.subject = memoize(new Supplier<Subject>() {
133 return subject.get();
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/authentication/service/
H A DDefaultSessionActivator.java6 * The contents of this file are subject to the terms
62 final InternalSession authSession, final Subject subject, final Object loginContext)
69 return updateSessions(session, loginState, session, authSession, sessionService, subject, loginContext);
78 SessionService sessionService, Subject subject, Object loginContext)
98 //ensure that we've updated the subject (if appropriate, e.g. from anonymous -> known)
99 loginState.setSubject(addSSOTokenPrincipal(subject, sessionToActivate.getID()));
130 protected Subject addSSOTokenPrincipal(Subject subject, SessionID sid) { argument
131 if (subject == null) {
132 subject = new Subject();
139 subject
61 activateSession(final LoginState loginState, final SessionService sessionService, final InternalSession authSession, final Subject subject, final Object loginContext) argument
76 updateSessions(InternalSession newSession, LoginState loginState, InternalSession sessionToActivate, InternalSession authSession, SessionService sessionService, Subject subject, Object loginContext) argument
[all...]
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/entitlement/
H A DLogicalCondition.java6 * The contents of this file are subject to the terms
65 * @param pConditionName subject name as used in OpenAM policy,
128 * @param subject EntitlementCondition who is under evaluation.
137 Subject subject,
165 * @param pConditionName subject name as used in OpenAM policy,
175 * @return subject name as used in OpenAM policy,
135 evaluate( String realm, Subject subject, String resourceName, Map<String, Set<String>> environment ) argument
H A DNotCondition.java6 * The contents of this file are subject to the terms
79 * @param pConditionName subject name as used in OpenAM policy,
137 * @param subject EntitlementCondition who is under evaluation.
147 Subject subject,
156 ConditionDecision decision = eCondition.evaluate(realm, subject, resourceName, environment);
212 * @param pConditionName subject name as used in OpenAM policy,
223 * @return subject name as used in OpenAM policy,
145 evaluate( String realm, Subject subject, String resourceName, Map<String, Set<String>> environment ) argument
H A DResourceAttribute.java6 * The contents of this file are subject to the terms
73 * @param subject Subject who is under evaluation.
82 Subject subject,
79 evaluate( Subject adminSubject, String realm, Subject subject, String resourceName, Map<String, Set<String>> environment) argument
H A DStaticAttributes.java6 * The contents of this file are subject to the terms
81 * @param subject Subject who is under evaluation.
91 Subject subject,
88 evaluate( Subject adminSubject, String realm, Subject subject, String resourceName, Map<String, Set<String>> environment) argument
H A DSubjectAttributesManager.java6 * The contents of this file are subject to the terms
114 * @param adminSubject subject who has rights to access PIP.
122 * Returns the <code>SubjectAttributesManager</code> of a given subject.
124 * @param adminSubject subject who has rights to access PIP.
125 * @param subject Subject
126 * @return <code>SubjectAttributesManager</code> of a given subject.
130 Subject subject) {
131 //TOFIX get realm from subject;
138 * @param adminSubject subject who has rights to access PIP.
174 * Returns the subject searc
128 getInstance( Subject adminSubject, Subject subject) argument
222 getSubjectSearchFilter( Subject subject, String applicationName) argument
263 getAttributes( Subject subject, Set<String> attrNames ) argument
281 hasAttribute( Subject subject, String attrName, String attrValue ) argument
338 getUserAttributes( Subject subject, Set<String> attrNames ) argument
[all...]
H A DUserAttributes.java6 * The contents of this file are subject to the terms
75 * @param subject Subject who is under evaluation.
85 Subject subject,
98 Map<String, Set<String>> values = sac.getUserAttributes(subject, names);
82 evaluate( Subject adminSubject, String realm, 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 DPolicyCondition.java6 * The contents of this file are subject to the terms
173 * @param subject Subject to be evaluated.
181 Subject subject,
186 SSOToken token = (subject != null) ? getSSOToken(subject) : null;
198 private static SSOToken getSSOToken(Subject subject) { argument
199 Set privateCred = subject.getPrivateCredentials();
179 evaluate( String realm, Subject subject, String resourceName, Map<String, Set<String>> environment ) argument
H A DPolicySubject.java6 * The contents of this file are subject to the terms
58 * This subject wraps all OpenAM policy subjects.
74 * @param values Values of this subject.
116 * Returns <code>true</code> if this is an exclusive subject.
118 * @return <code>true</code> if this is an exclusive subject.
151 * Returns state of this subject.
153 * @return state of this subject.
193 * Returns subject decision.
197 * @param subject Subject to be evaluated.
200 * @return subject decisio
204 evaluate( String realm, SubjectAttributesManager mgr, javax.security.auth.Subject subject, String resourceName, Map<String, Set<String>> environment ) argument
229 getSSOToken(javax.security.auth.Subject subject) argument
[all...]

Completed in 191 milliseconds

1234567891011>>