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 Type
    Method
    Description
    default void
    modifyRequestData(org.apache.wss4j.dom.handler.RequestData aRequestData)
    Modify the provided RequestData object, e.g. by allowing RSA 1.5 algorithms.
    default void
    modifyWSSConfig(org.apache.wss4j.dom.engine.WSSConfig aWSSConfig)
    Modify the provided WSSConfig to add additional handlers.
  • Method Details

    • modifyWSSConfig

      default void modifyWSSConfig(@Nonnull org.apache.wss4j.dom.engine.WSSConfig aWSSConfig)
      Modify the provided WSSConfig to add additional handlers. This was created based on issue #150.
      Parameters:
      aWSSConfig - The WSSConfig to be modified.
    • modifyRequestData

      default void modifyRequestData(@Nonnull org.apache.wss4j.dom.handler.RequestData aRequestData)
      Modify the provided RequestData object, 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. Never null.