Class Soap
- java.lang.Object
-
- org.keycloak.protocol.saml.profile.util.Soap
-
public final class Soap extends Object
- Author:
- Pedro Igor
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
Soap.SoapFaultBuilder
static class
Soap.SoapMessageBuilder
-
Constructor Summary
Constructors Constructor Description Soap()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Soap.SoapFaultBuilder
createFault()
static Soap.SoapMessageBuilder
createMessage()
static Document
extractSoapMessage(InputStream inputStream)
Returns Docuemnt based on the giveninputStream
which must contain a valid SOAP message.static Document
extractSoapMessage(javax.xml.soap.SOAPMessage soapMessage)
Returns Docuemnt based on the given SOAP message.static String
toSamlHttpPostMessage(Document document)
Returns a string encoded accordingly with the SAML HTTP POST Binding specification based on the giveninputStream
which must contain a valid SOAP message.
-
-
-
Method Detail
-
createFault
public static Soap.SoapFaultBuilder createFault()
-
createMessage
public static Soap.SoapMessageBuilder createMessage()
-
toSamlHttpPostMessage
public static String toSamlHttpPostMessage(Document document)
Returns a string encoded accordingly with the SAML HTTP POST Binding specification based on the given
inputStream
which must contain a valid SOAP message.The resulting string is based on the Body of the SOAP message, which should map to a valid SAML message.
- Parameters:
document
- the document containing a valid SOAP message with a Body that contains a SAML message- Returns:
- a string encoded accordingly with the SAML HTTP POST Binding specification
-
extractSoapMessage
public static Document extractSoapMessage(InputStream inputStream)
Returns Docuemnt based on the given
inputStream
which must contain a valid SOAP message.The resulting string is based on the Body of the SOAP message, which should map to a valid SAML message.
- Parameters:
inputStream
- an InputStream consisting of a SOAPMessage- Returns:
- A document containing the body of the SOAP message
-
extractSoapMessage
public static Document extractSoapMessage(javax.xml.soap.SOAPMessage soapMessage)
Returns Docuemnt based on the given SOAP message.
The resulting string is based on the Body of the SOAP message, which should map to a valid SAML message.
- Parameters:
soapMessage
- a SOAPMessage from which to extract the body- Returns:
- A document containing the body of the SOAP message
-
-