Skip to content

Commit

Permalink
Fixed JavaDoc errors
Browse files Browse the repository at this point in the history
  • Loading branch information
phax committed Nov 16, 2023
1 parent bfc5409 commit c32035a
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@
*
* @author Philip Helger
* @since 0.13.0
* @param <IMPLTYPE>
* Implementation type of the derived class
*/
public abstract class AbstractAS4RawResponseConsumer <IMPLTYPE extends AbstractAS4RawResponseConsumer <IMPLTYPE>>
implements
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,10 @@ private AS4DumpReader ()
* @param aHttpHeaderConsumer
* The optional consumer for the read HTTP headers. May be
* <code>null</code>.
* @param aHttpEndIndexConsumer
* An optional consumer for the number of header data bytes read, so
* that the start index of the payload can easily be determined. May be
* <code>null</code>.
* @since 2.1.0
*/
public static void readAndSkipInitialHttpHeaders (@Nonnull final byte [] aAS4InData,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -389,6 +389,9 @@ protected AS4IncomingMessageMetadata createIncomingMessageMetadata (@Nonnull fin
* The factory to parse incoming attachments. May not be
* <code>null</code>. Defaults to
* {@link #getIncomingAttachmentFactory()}.
* @param aISC
* The security configuration to use for incoming data. May not be
* <code>null</code>. Since v2.1.3.
* @param aHandlerCustomizer
* An optional callback that can be used to modify the internal
* {@link AS4RequestHandler} before and after processing. May be
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,13 @@
import com.helger.phase4.soap12.Soap12Envelope;

/**
* Test class for class {@link Ebms3ReaderBuilder}.
* Test class for class {@link Ebms3MessagingMarshaller}.
*
* @author Philip Helger
*/
public final class Ebms3ReaderBuilderTest
public final class Ebms3MessagingMarshallerTest
{
private static final Logger LOGGER = LoggerFactory.getLogger (Ebms3ReaderBuilderTest.class);
private static final Logger LOGGER = LoggerFactory.getLogger (Ebms3MessagingMarshallerTest.class);
private static final String PATH11 = "external/soap11test/";
private static final String PATH12 = "external/soap12test/";

Expand Down

0 comments on commit c32035a

Please sign in to comment.