Skip to content

Commit

Permalink
Javadoc fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Sebastian Lang committed Dec 9, 2020
1 parent a95fe5c commit 5c151b1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ public static class ColumnSearchConfiguration {
* <ul>
* <li>an Olson Timezone Identifier, such as "Europe/Berlin" or "America/New_York"<li>
* <li>a UTC offset in the form: +/-[hh]:[mm], e.g. "+04:45" or "-03:10"</li>
* <li>thhe strings “Z”, “UTC, or GMT</li>
* <li>the strings "Z", "UTC", or "GMT"</li>
* </ul>
*
* If this value is null the UTC will be used
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ public interface DataTablesRepository<T, ID extends Serializable> extends MongoR
*
* @param input the {@link DataTablesInput} mapped from the Ajax request
* @param converter the {@link Function} to apply to the results of the query
* @param <R> the Return entity type
* @return a {@link DataTablesOutput}
*/
<R> DataTablesOutput<R> findAll(DataTablesInput input, Function<T, R> converter);
Expand All @@ -54,6 +55,7 @@ public interface DataTablesRepository<T, ID extends Serializable> extends MongoR
* @param additionalCriteria an additional {@link Criteria} to apply to the query (with an "AND" clause)
* @param preFilteringCriteria a pre-filtering {@link Criteria} to apply to the query (with an "AND" clause)
* @param converter the {@link Function} to apply to the results of the query
* @param <R> the Return entity type
* @return a {@link DataTablesOutput}
*/
<R> DataTablesOutput<R> findAll(DataTablesInput input, Criteria additionalCriteria,
Expand Down

0 comments on commit 5c151b1

Please sign in to comment.