Class Stars.Get
- java.lang.Object
-
- com.google.gerrit.server.restapi.account.Stars.Get
-
- All Implemented Interfaces:
RestReadView<AccountResource.Star>
,RestView<AccountResource.Star>
- Enclosing class:
- Stars
public static class Stars.Get extends Object implements RestReadView<AccountResource.Star>
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description SortedSet<String>
apply(AccountResource.Star rsrc)
Process the view operation by reading from the resource.
-
-
-
Method Detail
-
apply
public SortedSet<String> apply(AccountResource.Star rsrc) throws AuthException
Description copied from interface:RestReadView
Process the view operation by reading from the resource.- Specified by:
apply
in interfaceRestReadView<AccountResource.Star>
- Parameters:
rsrc
- resource to read.- Returns:
- result to return to the client. Use
BinaryResult
to avoid automatic conversion to JSON. - Throws:
AuthException
- the client is not permitted to access this view.
-
-