Searched defs:fromJson (Results 51 - 71 of 71) sorted by relevance

123

/forgerock/openam/openam-sts/openam-client-sts/src/main/java/org/forgerock/openam/sts/soap/config/user/
H A DSoapDelegationConfig.java192 public static SoapDelegationConfig fromJson(JsonValue json) { method in class:SoapDelegationConfig
198 validationConfigs.add(TokenValidationConfig.fromJson(new JsonValue(obj)));
262 return fromJson(new JsonValue(jsonAttributes));
H A DSoapSTSKeystoreConfig.java210 public static SoapSTSKeystoreConfig fromJson(JsonValue json) throws IllegalStateException { method in class:SoapSTSKeystoreConfig
238 return fromJson(new JsonValue(MapMarshallUtils.toJsonValueMap(attributeMap)));
H A DSoapDeploymentConfig.java293 public static SoapDeploymentConfig fromJson(JsonValue json) { method in class:SoapDeploymentConfig
295 throw new NullPointerException("JsonValue passed to SoapDeploymentConfig#fromJson cannot be null!");
297 DeploymentConfig baseConfig = DeploymentConfig.fromJson(json);
H A DSoapSTSInstanceConfig.java365 public static SoapSTSInstanceConfig fromJson(JsonValue json) { method in class:SoapSTSInstanceConfig
369 STSInstanceConfig baseConfig = STSInstanceConfig.fromJson(json);
374 .deploymentConfig(SoapDeploymentConfig.fromJson(json.get(DEPLOYMENT_CONFIG)));
384 validationConfigs.add(TokenValidationConfig.fromJson(new JsonValue(obj)));
389 builder.soapSTSKeystoreConfig(SoapSTSKeystoreConfig.fromJson(json.get(SOAP_KEYSTORE_CONFIG)));
400 builder.soapDelegationConfig(SoapDelegationConfig.fromJson(json.get(SOAP_DELEGATION_CONFIG)));
577 return fromJson(new JsonValue(jsonAttributes));
/forgerock/openam/openam-sts/openam-client-sts/src/main/java/org/forgerock/openam/sts/user/invocation/
H A DSTSIssuedTokenState.java152 public static STSIssuedTokenState fromJson(JsonValue jsonValue) { method in class:STSIssuedTokenState
/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/setup/
H A DBootstrapConfig.java58 public static BootstrapConfig fromJson(String json) throws IOException { method in class:BootstrapConfig
65 return BootstrapConfig.fromJson(json);
/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/sso/providers/stateless/
H A DJwtSessionMapper.java164 return fromJson(encryptedJwt.getClaimsSet());
179 return fromJson(claimsSet);
182 private SessionInfo fromJson(JwtClaimsSet claimsSet) { method in class:JwtSessionMapper
/forgerock/openam/openam-sts/openam-common-sts/src/main/java/org/forgerock/openam/sts/service/invocation/
H A DOpenIdConnectTokenGenerationState.java151 public static OpenIdConnectTokenGenerationState fromJson(JsonValue json) { method in class:OpenIdConnectTokenGenerationState
H A DTokenGenerationServiceInvocationState.java204 public static TokenGenerationServiceInvocationState fromJson(JsonValue json) throws TokenMarshalException { method in class:TokenGenerationServiceInvocationState
211 ? SAML2TokenGenerationState.fromJson(json.get(SAML2_GENERATION_STATE)) : null)
213 ? OpenIdConnectTokenGenerationState.fromJson(json.get(OPENID_CONNECT_GENERATION_STATE)) : null)
/forgerock/openam-v13/openam-sts/openam-client-sts/src/main/java/org/forgerock/openam/sts/rest/config/user/
H A DRestSTSInstanceConfig.java337 public static RestSTSInstanceConfig fromJson(JsonValue json) { method in class:RestSTSInstanceConfig
341 STSInstanceConfig baseConfig = STSInstanceConfig.fromJson(json);
346 .deploymentConfig(DeploymentConfig.fromJson(json.get(DEPLOYMENT_CONFIG)));
356 transformConfigList.add(TokenTransformConfig.fromJson(new JsonValue(translation)));
369 transformConfigList.add(TokenTransformConfig.fromJson(new JsonValue(translation)));
382 customValidatorsList.add(CustomTokenOperation.fromJson(new JsonValue(translation)));
395 customProvidersList.add(CustomTokenOperation.fromJson(new JsonValue(translation)));
553 return fromJson(new JsonValue(jsonAttributes));
/forgerock/openam-v13/openam-sts/openam-client-sts/src/main/java/org/forgerock/openam/sts/soap/config/user/
H A DSoapDeploymentConfig.java293 public static SoapDeploymentConfig fromJson(JsonValue json) { method in class:SoapDeploymentConfig
295 throw new NullPointerException("JsonValue passed to SoapDeploymentConfig#fromJson cannot be null!");
297 DeploymentConfig baseConfig = DeploymentConfig.fromJson(json);
H A DSoapSTSInstanceConfig.java365 public static SoapSTSInstanceConfig fromJson(JsonValue json) { method in class:SoapSTSInstanceConfig
369 STSInstanceConfig baseConfig = STSInstanceConfig.fromJson(json);
374 .deploymentConfig(SoapDeploymentConfig.fromJson(json.get(DEPLOYMENT_CONFIG)));
384 validationConfigs.add(TokenValidationConfig.fromJson(new JsonValue(obj)));
389 builder.soapSTSKeystoreConfig(SoapSTSKeystoreConfig.fromJson(json.get(SOAP_KEYSTORE_CONFIG)));
400 builder.soapDelegationConfig(SoapDelegationConfig.fromJson(json.get(SOAP_DELEGATION_CONFIG)));
577 return fromJson(new JsonValue(jsonAttributes));
/forgerock/openam-v13/openam-core-rest/src/main/java/org/forgerock/openam/core/rest/record/
H A DRecordProperties.java84 public static RecordProperties fromJson(JsonValue jsonProperties) { method in class:RecordProperties
/forgerock/openam-v13/openam-core-rest/src/main/java/org/forgerock/openam/core/rest/sms/
H A DSmsJsonConverter.java285 public Map<String, Set<String>> fromJson(JsonValue jsonValue) throws JsonException, BadRequestException { method in class:SmsJsonConverter
286 return fromJson(null, jsonValue);
297 public Map<String, Set<String>> fromJson(String realm, JsonValue jsonValue) throws JsonException, BadRequestException { method in class:SmsJsonConverter
466 return converter.fromJson(value);
474 String fromJson(Object json); method in interface:SmsJsonConverter.AttributeSchemaConverter
484 public String fromJson(Object json) { method in class:SmsJsonConverter.StringAttributeSchemaValue
496 public String fromJson(Object json) { method in class:SmsJsonConverter.PasswordAttributeSchemaValue
508 public String fromJson(Object json) { method in class:SmsJsonConverter.BooleanAttributeSchemaValue
520 public String fromJson(Object json) { method in class:SmsJsonConverter.DoubleAttributeSchemaValue
532 public String fromJson(Objec method in class:SmsJsonConverter.IntegerAttributeSchemaValue
548 public String fromJson(Object json) { method in class:SmsJsonConverter.ScriptAttributeSchemaValue
[all...]
/forgerock/openam/openam-sts/openam-client-sts/src/main/java/org/forgerock/openam/sts/rest/config/user/
H A DRestSTSInstanceConfig.java337 public static RestSTSInstanceConfig fromJson(JsonValue json) { method in class:RestSTSInstanceConfig
341 STSInstanceConfig baseConfig = STSInstanceConfig.fromJson(json);
346 .deploymentConfig(DeploymentConfig.fromJson(json.get(DEPLOYMENT_CONFIG)));
356 transformConfigList.add(TokenTransformConfig.fromJson(new JsonValue(translation)));
369 transformConfigList.add(TokenTransformConfig.fromJson(new JsonValue(translation)));
382 customValidatorsList.add(CustomTokenOperation.fromJson(new JsonValue(translation)));
395 customProvidersList.add(CustomTokenOperation.fromJson(new JsonValue(translation)));
553 return fromJson(new JsonValue(jsonAttributes));
/forgerock/openam/openam-core-rest/src/main/java/org/forgerock/openam/core/rest/record/
H A DRecordProperties.java87 public static RecordProperties fromJson(JsonValue jsonProperties) { method in class:RecordProperties
/forgerock/openam/openam-core-rest/src/main/java/org/forgerock/openam/core/rest/sms/
H A DSmsJsonConverter.java318 public Map<String, Set<String>> fromJson(JsonValue jsonValue) throws JsonException, BadRequestException { method in class:SmsJsonConverter
319 return fromJson(null, jsonValue);
330 public Map<String, Set<String>> fromJson(String realm, JsonValue jsonValue) throws JsonException, BadRequestException { method in class:SmsJsonConverter
507 return converter.fromJson(value);
515 String fromJson(Object json); method in interface:SmsJsonConverter.AttributeSchemaConverter
525 public String fromJson(Object json) { method in class:SmsJsonConverter.StringAttributeSchemaValue
537 public String fromJson(Object json) { method in class:SmsJsonConverter.PasswordAttributeSchemaValue
549 public String fromJson(Object json) { method in class:SmsJsonConverter.BooleanAttributeSchemaValue
561 public String fromJson(Object json) { method in class:SmsJsonConverter.DoubleAttributeSchemaValue
573 public String fromJson(Objec method in class:SmsJsonConverter.IntegerAttributeSchemaValue
589 public String fromJson(Object json) { method in class:SmsJsonConverter.ScriptAttributeSchemaValue
[all...]
/forgerock/openam-v13/openam-sts/openam-client-sts/src/main/java/org/forgerock/openam/sts/config/user/
H A DOpenIdConnectTokenConfig.java450 public static OpenIdConnectTokenConfig fromJson(JsonValue json) throws IllegalStateException { method in class:OpenIdConnectTokenConfig
516 fromJson, and then call the static fromJson. This method must marshal between the Json representation of a complex
541 return fromJson(new JsonValue(jsonAttributes));
H A DSAML2Config.java592 public static SAML2Config fromJson(JsonValue json) throws IllegalStateException { method in class:SAML2Config
654 fromJson, and then call the static fromJson. This method must marshal between the Json representation of a complex
677 return fromJson(new JsonValue(jsonAttributes));
/forgerock/openam/openam-sts/openam-client-sts/src/main/java/org/forgerock/openam/sts/config/user/
H A DOpenIdConnectTokenConfig.java451 public static OpenIdConnectTokenConfig fromJson(JsonValue json) throws IllegalStateException { method in class:OpenIdConnectTokenConfig
517 fromJson, and then call the static fromJson. This method must marshal between the Json representation of a complex
542 return fromJson(new JsonValue(jsonAttributes));
H A DSAML2Config.java898 public static SAML2Config fromJson(JsonValue json) throws IllegalStateException { method in class:SAML2Config
972 fromJson, and then call the static fromJson. This method must marshal between the Json representation of a
994 return fromJson(new JsonValue(jsonAttributes));

Completed in 183 milliseconds

123