Skip to content

Commit

Permalink
Renamed SOAP to Soap
Browse files Browse the repository at this point in the history
  • Loading branch information
phax committed Aug 26, 2024
1 parent 2da540f commit 6445d5e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public interface ISoapHeaderElementProcessor
/**
* Process the passed header element.
*
* @param aSOAPDoc
* @param aSoapDoc
* The complete SOAP document (logically no MIME parts are contained).
* Never <code>null</code>.
* @param aHeaderElement
Expand All @@ -57,7 +57,7 @@ public interface ISoapHeaderElementProcessor
* header is treated as "not handled".
*/
@Nonnull
ESuccess processHeaderElement (@Nonnull Document aSOAPDoc,
ESuccess processHeaderElement (@Nonnull Document aSoapDoc,
@Nonnull Element aHeaderElement,
@Nonnull ICommonsList <WSS4JAttachment> aAttachments,
@Nonnull AS4IncomingMessageState aIncomingState,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -496,7 +496,7 @@ public ESuccess processHeaderElement (@Nonnull final Document aSoapDoc,
// Check if there is a BodyPayload as specified in the UserMessage
if (!bHasSoapBodyPayload)
{
final String sDetails = "Error processing the UserMessage. Expected a SOAPBody Payload but there is none present.";
final String sDetails = "Error processing the UserMessage. Expected a SOAP body payload but there is none present.";
LOGGER.error (sDetails);
aProcessingErrorMessagesTarget.add (EEbmsError.EBMS_VALUE_INCONSISTENT.errorBuilder (aLocale)
.errorDetail (sDetails)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,7 @@ private ESuccess _verifyAndDecrypt (@Nonnull final Document aSOAPDoc,
}

@Nonnull
public ESuccess processHeaderElement (@Nonnull final Document aSOAPDoc,
public ESuccess processHeaderElement (@Nonnull final Document aSoapDoc,
@Nonnull final Element aSecurityNode,
@Nonnull final ICommonsList <WSS4JAttachment> aAttachments,
@Nonnull final AS4IncomingMessageState aIncomingState,
Expand Down Expand Up @@ -499,7 +499,7 @@ public ESuccess processHeaderElement (@Nonnull final Document aSOAPDoc,
if (AS4Configuration.isWSS4JSynchronizedSecurity ())
{
// Use static WSSConfig creation
eSuccess = WSSSynchronizer.call ( () -> _verifyAndDecrypt (aSOAPDoc,
eSuccess = WSSSynchronizer.call ( () -> _verifyAndDecrypt (aSoapDoc,
aAttachments,
aIncomingState,
aProcessingErrorMessagesTarget,
Expand All @@ -508,7 +508,7 @@ public ESuccess processHeaderElement (@Nonnull final Document aSOAPDoc,
else
{
// Use instance WSSConfig creation
eSuccess = _verifyAndDecrypt (aSOAPDoc,
eSuccess = _verifyAndDecrypt (aSoapDoc,
aAttachments,
aIncomingState,
aProcessingErrorMessagesTarget,
Expand Down

0 comments on commit 6445d5e

Please sign in to comment.