Accounts: Make JavaDoc consistent

Change-Id: I0f0316b8f66b86ef55c91fc39412ec297142a1e5
Signed-off-by: Edwin Kempin <ekempin@google.com>
This commit is contained in:
Edwin Kempin
2017-01-11 13:09:52 +01:00
parent 0cc48e7c3f
commit d77a98f909

View File

@@ -79,7 +79,7 @@ public interface Accounts {
throws RestApiException; throws RestApiException;
/** /**
* Queries users. * Query users.
* <p> * <p>
* Example code: * Example code:
* {@code query().withQuery("name:John email:example.com").withLimit(5).get()} * {@code query().withQuery("name:John email:example.com").withLimit(5).get()}
@@ -89,7 +89,7 @@ public interface Accounts {
QueryRequest query() throws RestApiException; QueryRequest query() throws RestApiException;
/** /**
* Queries users. * Query users.
* <p> * <p>
* Shortcut API for {@code query().withQuery(String)}. * Shortcut API for {@code query().withQuery(String)}.
* *
@@ -108,7 +108,7 @@ public interface Accounts {
private int limit; private int limit;
/** /**
* Executes query and returns a list of accounts. * Execute query and return a list of accounts.
*/ */
public abstract List<AccountInfo> get() throws RestApiException; public abstract List<AccountInfo> get() throws RestApiException;
@@ -154,7 +154,7 @@ public interface Accounts {
EnumSet.noneOf(ListAccountsOption.class); EnumSet.noneOf(ListAccountsOption.class);
/** /**
* Executes query and returns a list of accounts. * Execute query and return a list of accounts.
*/ */
public abstract List<AccountInfo> get() throws RestApiException; public abstract List<AccountInfo> get() throws RestApiException;