Skip to content

Commit 2f874e6

Browse files
author
Psilo
committed
repair javadoc
1 parent 1c4a4b4 commit 2f874e6

17 files changed

+40
-40
lines changed

src/main/java/info/unterrainer/commons/httpserver/extensions/delegates/PostDeleteAsync.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ public interface PostDeleteAsync {
44

55
/**
66
* Allows you to execute code after the deletion of an item.
7-
* <p/>
7+
* <p>
88
* Since this is asynchronous changing the DTOs will do nothing (runs in
99
* parallel and the action probably already happened when your code is
1010
* executed).

src/main/java/info/unterrainer/commons/httpserver/extensions/delegates/PostDeleteSync.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ public interface PostDeleteSync<E> {
77
/**
88
* Allows you to execute code after the deletion of an item.<br/>
99
* You may change the ID with the return-value.
10-
* <p/>
11-
* Returning {@link false} will abort. So be sure to return something
10+
* <p>
11+
* Returning {@code false} will abort. So be sure to return something
1212
* (status...) in that case using the {@link Context}.
1313
*
1414
* @param ctx the Javalin context

src/main/java/info/unterrainer/commons/httpserver/extensions/delegates/PostGetListAsync.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,16 @@ public interface PostGetListAsync<P extends BasicJpa, J extends BasicJson> {
88

99
/**
1010
* Allows you to execute code after the fetching of an item.
11-
* <p/>
11+
* <p>
1212
* Since this is asynchronous changing the DTOs will do nothing (runs in
1313
* parallel and the action probably already happened when your code is
1414
* executed).
1515
*
16-
* @param receivedSize the size-parameter of the list
17-
* @param receivedOffset the offset-parameter of the list
18-
* @param readList the list that was read based on the size- and
19-
* offset-parameters
20-
* @param response the JSON that will be sent as a response
16+
* @param size the size-parameter of the list
17+
* @param offset the offset-parameter of the list
18+
* @param readList the list that was read based on the size- and
19+
* offset-parameters
20+
* @param response the JSON that will be sent as a response
2121
*/
2222
void handle(Long size, Long offset, ListJson<P> readList, ListJson<J> response);
2323
}

src/main/java/info/unterrainer/commons/httpserver/extensions/delegates/PostGetListSync.java

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -9,18 +9,18 @@ public interface PostGetListSync<P extends BasicJpa, J extends BasicJson, E> {
99

1010
/**
1111
* Allows you to execute code after fetching of a list of items.
12-
* <p/>
13-
* Returning {@link null} will abort. So be sure to return something (status...)
12+
* <p>
13+
* Returning {@code null} will abort. So be sure to return something (status...)
1414
* in that case using the {@link Context}.
1515
*
16-
* @param ctx the Javalin context
17-
* @param entityManager the entity-manager you can use to get the active
18-
* transaction, if any
19-
* @param receivedSize the size-parameter of the list
20-
* @param receivedOffset the offset-parameter of the list
21-
* @param readList the list that was read based on the size- and
22-
* offset-parameters
23-
* @param response the JSON that will be sent as a response
16+
* @param ctx the Javalin context
17+
* @param entityManager the entity-manager you can use to get the active
18+
* transaction, if any
19+
* @param size the size-parameter of the list
20+
* @param offset the offset-parameter of the list
21+
* @param readList the list that was read based on the size- and
22+
* offset-parameters
23+
* @param response the JSON that will be sent as a response
2424
* @return the JSON that will be sent as a response
2525
*/
2626
ListJson<J> handle(Context ctx, E entityManager, Long size, Long offset, ListJson<P> readList,

src/main/java/info/unterrainer/commons/httpserver/extensions/delegates/PostGetSingleAsync.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ public interface PostGetSingleAsync<P extends BasicJpa, J extends BasicJson> {
77

88
/**
99
* Allows you to execute code after the fetching of a list of items.
10-
* <p/>
10+
* <p>
1111
* Since this is asynchronous changing the DTOs will do nothing (runs in
1212
* parallel and the action probably already happened when your code is
1313
* executed).

src/main/java/info/unterrainer/commons/httpserver/extensions/delegates/PostGetSingleSync.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ public interface PostGetSingleSync<P extends BasicJpa, J extends BasicJson, E> {
88

99
/**
1010
* Allows you to execute code after fetching of an item.
11-
* <p/>
12-
* Returning {@link null} will abort. So be sure to return something (status...)
11+
* <p>
12+
* Returning {@code null} will abort. So be sure to return something (status...)
1313
* in that case using the {@link Context}.
1414
*
1515
* @param ctx the Javalin context

src/main/java/info/unterrainer/commons/httpserver/extensions/delegates/PostInsertAsync.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ public interface PostInsertAsync<P extends BasicJpa, J extends BasicJson> {
77

88
/**
99
* Allows you to execute code after the insertion of an item.
10-
* <p/>
10+
* <p>
1111
* Since this is asynchronous changing the DTOs will do nothing (runs in
1212
* parallel and the action probably already happened when your code is
1313
* executed).

src/main/java/info/unterrainer/commons/httpserver/extensions/delegates/PostInsertSync.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ public interface PostInsertSync<P extends BasicJpa, J extends BasicJson, E> {
88

99
/**
1010
* Allows you to execute code after the insertion of an item.
11-
* <p/>
12-
* Returning {@link null} will abort. So be sure to return something (status...)
11+
* <p>
12+
* Returning {@code null} will abort. So be sure to return something (status...)
1313
* in that case using the {@link Context}.
1414
*
1515
* @param ctx the Javalin context

src/main/java/info/unterrainer/commons/httpserver/extensions/delegates/PostModifyAsync.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ public interface PostModifyAsync<P extends BasicJpa, J extends BasicJson> {
77

88
/**
99
* Allows you to execute code after the modification of an item.
10-
* <p/>
10+
* <p>
1111
* Since this is asynchronous changing the DTOs will do nothing (runs in
1212
* parallel and the action probably already happened when your code is
1313
* executed).

src/main/java/info/unterrainer/commons/httpserver/extensions/delegates/PostModifySync.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ public interface PostModifySync<P extends BasicJpa, J extends BasicJson, E> {
88

99
/**
1010
* Allows you to execute code after the modification of an item.
11-
* <p/>
12-
* Returning {@link null} will abort. So be sure to return something (status...)
11+
* <p>
12+
* Returning {@code null} will abort. So be sure to return something (status...)
1313
* in that case using the {@link Context}.
1414
*
1515
* @param ctx the Javalin context

src/main/java/info/unterrainer/commons/httpserver/extensions/delegates/PreDeleteAsync.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ public interface PreDeleteAsync {
44

55
/**
66
* Allows you to execute code before deletion of an item.
7-
* <p/>
7+
* <p>
88
* Since this is asynchronous changing the DTOs will do nothing (runs in
99
* parallel and the action probably already happened when your code is
1010
* executed).

src/main/java/info/unterrainer/commons/httpserver/extensions/delegates/PreDeleteSync.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55
public interface PreDeleteSync<E> {
66

77
/**
8-
* Allows you to execute code before deletion of an item.<br/>
8+
* Allows you to execute code before deletion of an item.<br>
99
* You may change the ID with the return-value.
10-
* <p/>
11-
* Returning {@link null} will abort. So be sure to return something (status...)
10+
* <p>
11+
* Returning {@code null} will abort. So be sure to return something (status...)
1212
* in that case using the {@link Context}.
1313
*
1414
* @param ctx the Javalin context

src/main/java/info/unterrainer/commons/httpserver/extensions/delegates/PreInsertAsync.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ public interface PreInsertAsync<P extends BasicJpa, J extends BasicJson> {
77

88
/**
99
* Allows you to execute code before insertion of an item.
10-
* <p/>
10+
* <p>
1111
* Since this is asynchronous changing the DTOs will do nothing (runs in
1212
* parallel and the action probably already happened when your code is
1313
* executed).

src/main/java/info/unterrainer/commons/httpserver/extensions/delegates/PreInsertSync.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ public interface PreInsertSync<P extends BasicJpa, J extends BasicJson, E> {
88

99
/**
1010
* Allows you to execute code before insertion of an item.
11-
* <p/>
12-
* Returning {@link null} will abort. So be sure to return something (status...)
11+
* <p>
12+
* Returning {@code null} will abort. So be sure to return something (status...)
1313
* in that case using the {@link Context}.
1414
*
1515
* @param ctx the Javalin context

src/main/java/info/unterrainer/commons/httpserver/extensions/delegates/PreModifyAsync.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ public interface PreModifyAsync<P extends BasicJpa, J extends BasicJson> {
77

88
/**
99
* Allows you to execute code before modification of an item.
10-
* <p/>
10+
* <p>
1111
* Since this is asynchronous changing the DTOs will do nothing (runs in
1212
* parallel and the action probably already happened when your code is
1313
* executed).

src/main/java/info/unterrainer/commons/httpserver/extensions/delegates/PreModifySync.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ public interface PreModifySync<P extends BasicJpa, J extends BasicJson, E> {
88

99
/**
1010
* Allows you to execute code before modification of an item.
11-
* <p/>
12-
* Returning {@link null} will abort. So be sure to return something (status...)
11+
* <p>
12+
* Returning {@code null} will abort. So be sure to return something (status...)
1313
* in that case using the {@link Context}.
1414
*
1515
* @param ctx the Javalin context

src/main/java/info/unterrainer/commons/httpserver/interceptors/delegates/GetListInterceptor.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ public interface GetListInterceptor {
1010
/**
1111
* Allows you to execute intercept the path to the get-list method currently
1212
* being built.
13-
* <p/>
14-
* Returning {@link null} or throwing an exception will abort the evaluation of
13+
* <p>
14+
* Returning {@code null} or throwing an exception will abort the evaluation of
1515
* this interceptor. If you'd like your interceptor to be taken by the server,
1616
* return a valid {@link GetListInterceptorResult}
1717
*

0 commit comments

Comments
 (0)