public interface IMICMatchingHandler
| Modifier and Type | Method and Description |
|---|---|
void |
onMICMatch(IMessage aMsg,
String sMIC)
Invoked upon MIC match
|
void |
onMICMismatch(IMessage aMsg,
String sOriginalMIC,
String sReceivedMIC)
Invoked upon MIC mismatch
|
void onMICMatch(@Nonnull IMessage aMsg, @Nonnull String sMIC) throws AS2Exception
aMsg - The message it is all about. Never nullsMIC - The MIC calculated and received. May not be null.AS2Exception - In case of errorvoid onMICMismatch(@Nonnull IMessage aMsg, @Nullable String sOriginalMIC, @Nullable String sReceivedMIC) throws AS2Exception
aMsg - The message it is all about. Never nullsOriginalMIC - The MIC calculated here. May be null.sReceivedMIC - The MIC received from the other side. May be null.AS2Exception - In case of errorCopyright © 2013–2022 Philip Helger. All rights reserved.