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

/forgerock/openam/openam-samples/sts-example-code/
H A DCustomTokenOperationContext.java39 private final HashSet<CustomTokenOperation> customProviders; field in class:CustomTokenOperationContext.CustomTokenOperationContextBuilder
44 customProviders = new HashSet<>();
54 customProviders.add(new CustomTokenOperation(customTokenId, restTokenValidatorImplClass));
70 private final Set<CustomTokenOperation> customProviders; field in class:CustomTokenOperationContext
75 this.customProviders = Collections.unmodifiableSet(builder.customProviders);
85 public Set<CustomTokenOperation> getCustomProviders() { return customProviders; }
/forgerock/openam-v13/openam-sts/openam-client-sts/src/main/java/org/forgerock/openam/sts/rest/config/user/
H A DRestSTSInstanceConfig.java321 JsonValue customProviders = new JsonValue(customProvidersList);
322 baseValue.add(CUSTOM_TOKEN_PROVIDERS, customProviders);
387 JsonValue customProviders = json.get(CUSTOM_TOKEN_PROVIDERS);
388 if (!customProviders.isNull()) {
389 if (!customProviders.isList()) {
391 + customProviders.asString());
394 for (Object translation : customProviders.asList()) {
453 Set<String> customProviders = new HashSet<>();
454 interimMap.put(CUSTOM_TOKEN_PROVIDERS, customProviders);
456 customProviders
[all...]
/forgerock/openam/openam-sts/openam-client-sts/src/main/java/org/forgerock/openam/sts/rest/config/user/
H A DRestSTSInstanceConfig.java321 JsonValue customProviders = new JsonValue(customProvidersList);
322 baseValue.add(CUSTOM_TOKEN_PROVIDERS, customProviders);
387 JsonValue customProviders = json.get(CUSTOM_TOKEN_PROVIDERS);
388 if (!customProviders.isNull()) {
389 if (!customProviders.isList()) {
391 + customProviders.asString());
394 for (Object translation : customProviders.asList()) {
453 Set<String> customProviders = new HashSet<>();
454 interimMap.put(CUSTOM_TOKEN_PROVIDERS, customProviders);
456 customProviders
[all...]

Completed in 30 milliseconds