Searched refs:customValidators (Results 1 - 3 of 3) sorted by relevance

/forgerock/openam/openam-samples/sts-example-code/
H A DCustomTokenOperationContext.java38 private final HashSet<CustomTokenOperation> customValidators; field in class:CustomTokenOperationContext.CustomTokenOperationContextBuilder
43 customValidators = new HashSet<>();
49 customValidators.add(new CustomTokenOperation(customTokenId, restTokenValidatorImplClass));
69 private final Set<CustomTokenOperation> customValidators; field in class:CustomTokenOperationContext
74 this.customValidators = Collections.unmodifiableSet(builder.customValidators);
83 public Set<CustomTokenOperation> getCustomValidators() { return customValidators; }
/forgerock/openam-v13/openam-sts/openam-client-sts/src/main/java/org/forgerock/openam/sts/rest/config/user/
H A DRestSTSInstanceConfig.java312 JsonValue customValidators = new JsonValue(customValidatorsList);
313 baseValue.add(CUSTOM_TOKEN_VALIDATORS, customValidators);
374 JsonValue customValidators = json.get(CUSTOM_TOKEN_VALIDATORS);
375 if (!customValidators.isNull()) {
376 if (!customValidators.isList()) {
378 + customValidators.asString());
381 for (Object translation : customValidators.asList()) {
446 Set<String> customValidators = new HashSet<>();
447 interimMap.put(CUSTOM_TOKEN_VALIDATORS, customValidators);
449 customValidators
[all...]
/forgerock/openam/openam-sts/openam-client-sts/src/main/java/org/forgerock/openam/sts/rest/config/user/
H A DRestSTSInstanceConfig.java312 JsonValue customValidators = new JsonValue(customValidatorsList);
313 baseValue.add(CUSTOM_TOKEN_VALIDATORS, customValidators);
374 JsonValue customValidators = json.get(CUSTOM_TOKEN_VALIDATORS);
375 if (!customValidators.isNull()) {
376 if (!customValidators.isList()) {
378 + customValidators.asString());
381 for (Object translation : customValidators.asList()) {
446 Set<String> customValidators = new HashSet<>();
447 interimMap.put(CUSTOM_TOKEN_VALIDATORS, customValidators);
449 customValidators
[all...]

Completed in 633 milliseconds