Package com.adobe.granite.auth.saml.spi
Interface Message
-
public interface MessageThe saml interface identifies all top level saml requests and responses.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetId()Gets the identifier for this message.java.lang.StringgetRawMessage()Get the message bodyvoidsetId(java.lang.String id)Sets the identifier for this message.voidsetRawMessage(java.lang.String rawMessage)Store the message body
-
-
-
Method Detail
-
getId
java.lang.String getId()
Gets the identifier for this message.- Returns:
- String containing the identifier for this message.
-
setId
void setId(java.lang.String id)
Sets the identifier for this message.- Parameters:
id- String containing the identifier for this message.
-
setRawMessage
void setRawMessage(java.lang.String rawMessage)
Store the message body- Parameters:
rawMessage- The decoded, decrypted message as a String
-
getRawMessage
java.lang.String getRawMessage()
Get the message body- Returns:
- The decoded, decrypted message as a String
-
-