Searched defs:restSTSInstanceTranslateUrl (Results 1 - 1 of 1) sorted by relevance

/forgerock/openam/openam-samples/sts-example-code/
H A DRestSTSConsumer.java68 private final URL restSTSInstanceTranslateUrl; field in class:RestSTSConsumer
75 * @param restSTSInstanceTranslateUrl The full url of the rest-sts instance, with the translate action specfied.
89 * @throws MalformedURLException In case the specified restSTSInstanceTranslateUrl is mal-formed.
92 public RestSTSConsumer(String restSTSInstanceTranslateUrl, String restSTSInstanceValidateUrl, argument
94 this.restSTSInstanceTranslateUrl = new URL(restSTSInstanceTranslateUrl);
98 this.logger.log(Level.FINE, "RestSTSConsumer will consume the REST STS at url: " + this.restSTSInstanceTranslateUrl.toString());
419 HttpURLConnection connection = (HttpURLConnection) restSTSInstanceTranslateUrl.openConnection();
508 throw new TokenCreationException(500, "Could not map the response from the rest sts instance at url " + restSTSInstanceTranslateUrl +
513 throw new TokenCreationException(500, "The json response returned from the rest-sts instance at url " + restSTSInstanceTranslateUrl
[all...]

Completed in 40 milliseconds