Searched defs:userRoles (Results 1 - 3 of 3) sorted by relevance

/forgerock/jee-agents-v3.5/jee-agents-jboss/jee-agents-jboss-common/src/main/java/com/sun/identity/agents/jboss/v40/
H A DAmJBossLoginModule.java49 private transient SimpleGroup userRoles = new SimpleGroup(STR_JBOSS_ROLES); field in class:AmJBossLoginModule
71 return new Group[]{userRoles};
109 userRoles.addMember(p);
/forgerock/openidm-v4/openidm-authnfilter/src/main/java/org/forgerock/openidm/auth/modules/
H A DPropertyRoleCalculator.java39 private final String userRoles; field in class:PropertyRoleCalculator
44 * @param userRoles the object attribute that represents the role definition in the retrieved object.
46 PropertyRoleCalculator(String userRoles) { argument
47 this.userRoles = userRoles;
51 * Performs the calculation of roles based on the userRoles property in the configuration and the retrieved
68 if (userRoles != null && !userDetail.get(userRoles).isNull()) {
69 if (userDetail.get(userRoles).isString()) {
70 for (String role : userDetail.get(userRoles)
[all...]
H A DRoleCalculatorFactory.java36 * @param userRoles The object attribute representing the role assignment.
42 RoleCalculator create(final List<String> defaultRoles, final String userRoles, argument
56 if (userRoles != null) {
58 calculators.add(new PropertyRoleCalculator(userRoles));

Completed in 21 milliseconds