Skip to content

Commit a4d9b23

Browse files
author
Psilo
committed
comment addition and information update
1 parent 5cf196c commit a4d9b23

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

src/main/java/info/unterrainer/commons/httpserver/Information.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22

33
public class Information {
44
public static final String name = "Http-Server";
5-
public static final String buildTime = "2020-10-23T12:37:54Z";
6-
public static final String pomVersion = "0.1.8";
5+
public static final String buildTime = "2020-10-23T12:54:31Z";
6+
public static final String pomVersion = "0.1.9";
77
}

src/main/java/info/unterrainer/commons/httpserver/interceptors/InterceptorParamBuilder.java

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ public class InterceptorParamBuilder<P extends BasicJpa, J extends BasicJson, E>
2222
* This helps you to add something to the select-clause, like 'distinct' or a
2323
* limit.<br>
2424
* The standard table always gets the alias 'o'.
25-
*
25+
*
2626
* @param selectClause the clause (Example:
2727
* {@code 'DISTINCT ' + ThisJpa.class.getSimpleName + ' AS o'})
2828
* @return itself in order to provide a fluent interface.
@@ -64,7 +64,9 @@ public InterceptorParamBuilder<P, J, E> orderBy(final String orderByClause) {
6464
}
6565

6666
/**
67-
* This is where you declare your rules that will construct your query.
67+
* This is where you declare your rules that will construct your query.<br>
68+
* <b>Be sure to have the correct indexes placed on your tables for your queries
69+
* to perform well.</b>
6870
* <p>
6971
* - The operators are 'AND' and 'OR' and you may use parentheses '(' and ')' to
7072
* group your sub-expressions.<br>

0 commit comments

Comments
 (0)