Package org.opensaml.soap.config
Class SOAPConfiguration
java.lang.Object
org.opensaml.soap.config.SOAPConfiguration
SAML-related configuration information.
The configuration instance to use would typically be retrieved from the
ConfigurationService.
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate IntegerSOAP message size limit.private booleanFlag indicating whether to enforce SOAP message size limits in the decoders. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionGet the SOAP message size limit.booleanGet the flag indicating whether to enforce SOAP message size limits in the decoders.voidsetDecoderSizeLimit(Integer limit) Set the SOAP message size limit.voidsetEnforceDecoderSizeLimit(boolean flag) Set the flag indicating whether to enforce SOAP message size limits in the decoders.
-
Field Details
-
enforceDecoderSizeLimit
private boolean enforceDecoderSizeLimitFlag indicating whether to enforce SOAP message size limits in the decoders. -
decoderSizeLimit
SOAP message size limit.
-
-
Constructor Details
-
SOAPConfiguration
public SOAPConfiguration()
-
-
Method Details
-
isEnforceDecoderSizeLimit
public boolean isEnforceDecoderSizeLimit()Get the flag indicating whether to enforce SOAP message size limits in the decoders.- Returns:
- true if enforcement enabled, false if not
-
setEnforceDecoderSizeLimit
public void setEnforceDecoderSizeLimit(boolean flag) Set the flag indicating whether to enforce SOAP message size limits in the decoders.- Parameters:
flag- true if enforcement enabled, false if not
-
getDecoderSizeLimit
Get the SOAP message size limit.- Returns:
- the limit in bytes
-
setDecoderSizeLimit
Set the SOAP message size limit.- Parameters:
limit- the limit in bytes
-