Skip to content

Commit

Permalink
Add two missing JavaDocs Checkstyle is complaining about
Browse files Browse the repository at this point in the history
  • Loading branch information
SvenWoltmann committed Jun 23, 2023
1 parent 962fd9f commit 98cd0e6
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@
import eu.happycoders.shop.model.customer.CustomerId;
import jakarta.ws.rs.core.Response;

/**
* A parser for customer IDs, throwing a {@link jakarta.ws.rs.ClientErrorException} for invalid
* customer IDs.
*
* @author Sven Woltmann
*/
public final class CustomerIdParser {

private CustomerIdParser() {}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@
import eu.happycoders.shop.model.product.ProductId;
import jakarta.ws.rs.core.Response;

/**
* A parser for product IDs, throwing a {@link jakarta.ws.rs.ClientErrorException} for invalid
* product IDs.
*
* @author Sven Woltmann
*/
public final class ProductIdParser {

private ProductIdParser() {}
Expand Down

0 comments on commit 98cd0e6

Please sign in to comment.