Package com.helger.phase4.crypto
Interface IAS4DecryptParameterModifier
public interface IAS4DecryptParameterModifier
Callback interface for modifying the decryption
RequestData WSS4J
object.- Since:
- 2.2.0
- Author:
- Philip Helger
-
Method Summary
Modifier and TypeMethodDescriptiondefault voidmodifyRequestData(org.apache.wss4j.dom.handler.RequestData aRequestData) Modify the providedRequestDataobject, e.g. by allowing RSA 1.5 algorithms.default voidmodifyWSSConfig(org.apache.wss4j.dom.engine.WSSConfig aWSSConfig) Modify the providedWSSConfigto add additional handlers.
-
Method Details
-
modifyWSSConfig
Modify the providedWSSConfigto add additional handlers. This was created based on issue #150.- Parameters:
aWSSConfig- TheWSSConfigto be modified.
-
modifyRequestData
Modify the providedRequestDataobject, e.g. by allowing RSA 1.5 algorithms. This method is called after all the default setters, so be careful not to overwrite standard fields, to avoid creating unintended side effects.- Parameters:
aRequestData- The object to be modified. Nevernull.
-