Document QueryAccounts class

Change-Id: I6c231251db01323d6a8de7daafa72c8a25ac1703
Signed-off-by: Edwin Kempin <ekempin@google.com>
This commit is contained in:
Edwin Kempin
2019-12-27 14:43:46 +01:00
committed by David Pursehouse
parent c64db167af
commit f660ce6ae1

View File

@@ -53,6 +53,14 @@ import java.util.Set;
import org.eclipse.jgit.lib.Config;
import org.kohsuke.args4j.Option;
/**
* REST endpoint to query accounts.
*
* <p>This REST endpoint handles {@code GET /accounts/} requests.
*
* <p>The account queries are parsed by {@link AccountQueryBuilder} and executed by {@link
* AccountQueryProcessor}.
*/
public class QueryAccounts implements RestReadView<TopLevelResource> {
private static final int MAX_SUGGEST_RESULTS = 100;