Skip to content

Commit

Permalink
Add excludedUserStoreDomainsProperty
Browse files Browse the repository at this point in the history
  • Loading branch information
PasinduYeshan committed Nov 3, 2024
1 parent f8f6cc5 commit ea9e478
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,7 @@ public class SCIMUserManager implements UserManager {
private static final String DISPLAY_NAME_PROPERTY = "displayName";
private static final String DISPLAY_ORDER_PROPERTY = "displayOrder";
private static final String REGULAR_EXPRESSION_PROPERTY = "regEx";
private static final String EXCLUDED_USER_STORE_DOMAINS_PROPERTY = "excludedUserStoreDomains";
private static final String LOCATION_CLAIM = "http://wso2.org/claims/location";
private static final String LAST_MODIFIED_CLAIM = "http://wso2.org/claims/modified";
private static final String RESOURCE_TYPE_CLAIM = "http://wso2.org/claims/resourceType";
Expand Down Expand Up @@ -5951,6 +5952,10 @@ private void populateBasicAttributes(LocalClaim mappedLocalClaim, AbstractAttrib
attribute.addAttributeProperty(ClaimConstants.MAX_LENGTH,
mappedLocalClaim.getClaimProperty(ClaimConstants.MAX_LENGTH));
}
if (mappedLocalClaim.getClaimProperty(ClaimConstants.EXCLUDED_USER_STORE_DOMAINS_PROPERTY) != null) {
attribute.addAttributeProperty(EXCLUDED_USER_STORE_DOMAINS_PROPERTY,
mappedLocalClaim.getClaimProperty(ClaimConstants.EXCLUDED_USER_STORE_DOMAINS_PROPERTY));
}
}
}

Expand Down

0 comments on commit ea9e478

Please sign in to comment.