22         String rootUrl = client.getRootUrl();
    23         Set<String> redirectUris = 
new HashSet<>();
    26         List<ProtocolMapperRepresentation> foundPairwiseMappers = PairwiseSubMapperUtils.getPairwiseSubMappers(client);
    28         for (ProtocolMapperRepresentation foundPairwise : foundPairwiseMappers) {
    29             String sectorIdentifierUri = PairwiseSubMapperHelper.getSectorIdentifierUri(foundPairwise);
    30             if (client.getRedirectUris() != null) redirectUris.addAll(client.getRedirectUris());
    31             valid = valid && 
validate(session, rootUrl, redirectUris, sectorIdentifierUri, messages);
 static boolean validate(KeycloakSession session, ClientRepresentation client, ValidationMessages messages)
Definition: PairwiseClientValidator.java:21