Package com.helger.phase4.crypto
Interface IWSSecSignatureCustomizer
public interface IWSSecSignatureCustomizer
Customize the
WSSecSignature object additional to what is possible
via the AS4SigningParams class.- Since:
- 2.2.2.
- Author:
- Philip Helger
-
Method Summary
Modifier and TypeMethodDescriptiondefault org.apache.wss4j.dom.message.WSSecSignaturecreateWSSecSignature(org.apache.wss4j.dom.message.WSSecHeader aSecHeader) Create an overloaded version of WSSecSignaturedefault voidcustomize(org.apache.wss4j.dom.message.WSSecSignature aWSSecSignature) The customization happens AFTER all the default properties are applied.
-
Method Details
-
createWSSecSignature
@Nonnull default org.apache.wss4j.dom.message.WSSecSignature createWSSecSignature(@Nonnull org.apache.wss4j.dom.message.WSSecHeader aSecHeader) Create an overloaded version of WSSecSignature- Parameters:
aSecHeader- The security header to start with.- Returns:
- Never
null.
-
customize
The customization happens AFTER all the default properties are applied. So be sure you know what to do when overwriting stuff.- Parameters:
aWSSecSignature- The object to modify. May not benull.
-