keycloak-service
公開メンバ関数 | 限定公開メンバ関数 | 全メンバ一覧
org.keycloak.protocol.saml.JaxrsSAML2BindingBuilder.PostBindingBuilder クラス
org.keycloak.protocol.saml.JaxrsSAML2BindingBuilder.PostBindingBuilder の継承関係図
Inheritance graph
org.keycloak.protocol.saml.JaxrsSAML2BindingBuilder.PostBindingBuilder 連携図
Collaboration graph

公開メンバ関数

 PostBindingBuilder (JaxrsSAML2BindingBuilder builder, Document document) throws ProcessingException
 
Response request (String actionUrl) throws ConfigurationException, ProcessingException, IOException
 
Response response (String actionUrl) throws ConfigurationException, ProcessingException, IOException
 

限定公開メンバ関数

Response buildResponse (Document responseDoc, String actionUrl, boolean asRequest) throws ProcessingException, ConfigurationException, IOException
 

詳解

構築子と解体子

◆ PostBindingBuilder()

org.keycloak.protocol.saml.JaxrsSAML2BindingBuilder.PostBindingBuilder.PostBindingBuilder ( JaxrsSAML2BindingBuilder  builder,
Document  document 
) throws ProcessingException
inline
37  {
38  super(builder, document);
39  }

関数詳解

◆ buildResponse()

Response org.keycloak.protocol.saml.JaxrsSAML2BindingBuilder.PostBindingBuilder.buildResponse ( Document  responseDoc,
String  actionUrl,
boolean  asRequest 
) throws ProcessingException, ConfigurationException, IOException
inlineprotected
46  {
47  String str = builder.buildHtmlPostResponse(responseDoc, actionUrl, asRequest);
48 
49  return Response.ok(str, MediaType.TEXT_HTML_TYPE)
50  .header("Pragma", "no-cache")
51  .header("Cache-Control", "no-cache, no-store").build();
52  }

◆ request()

Response org.keycloak.protocol.saml.JaxrsSAML2BindingBuilder.PostBindingBuilder.request ( String  actionUrl) throws ConfigurationException, ProcessingException, IOException
inline
40  {
41  return buildResponse(document, actionUrl, true);
42  }
Response buildResponse(Document responseDoc, String actionUrl, boolean asRequest)
Definition: JaxrsSAML2BindingBuilder.java:46

◆ response()

Response org.keycloak.protocol.saml.JaxrsSAML2BindingBuilder.PostBindingBuilder.response ( String  actionUrl) throws ConfigurationException, ProcessingException, IOException
inline
43  {
44  return buildResponse(document, actionUrl, false);
45  }
Response buildResponse(Document responseDoc, String actionUrl, boolean asRequest)
Definition: JaxrsSAML2BindingBuilder.java:46

このクラス詳解は次のファイルから抽出されました: