Searched defs:stsClientCertHeaderName (Results 1 - 1 of 1) sorted by relevance
/forgerock/openam/openam-samples/sts-example-code/ |
H A D | RestSTSConsumer.java | 299 * in the header specified by stsClientCertHeaderName (unless the rest-sts is being consumed via two-way-tls, in which 300 * case the stsClientCertHeaderName is irrelevant, as the rest-sts will reference the client's certificate via the 304 * @param stsClientCertHeaderName The header name specification of where the published sts expects to find the client 312 public String transformX509ToSAML2(SAML2SubjectConfirmation subjectConfirmation, String stsClientCertHeaderName, argument 320 return invokeTokenTranslation(invocationState.toJson().toString(), stsClientCertHeaderName, clientCertificate); 330 public String transformX509ToOIDC(String nonce, String stsClientCertHeaderName, X509Certificate clientCertificate) argument 337 return invokeTokenTranslation(invocationState.toJson().toString(), stsClientCertHeaderName, clientCertificate); 416 private String invokeTokenTranslation(String invocationPayload, String stsClientCertHeaderName, X509Certificate userCertificate) argument 424 if (stsClientCertHeaderName != null) { 426 connection.setRequestProperty(stsClientCertHeaderName, Base6 [all...] |
Completed in 49 milliseconds