use of com.google.gerrit.server.account.AccountResource.Star in project gerrit by GerritCodeReview.
the class Stars method parse.
@Override
public Star parse(AccountResource parent, IdString id) throws ResourceNotFoundException, OrmException {
IdentifiedUser user = parent.getUser();
ChangeResource change = changes.parse(TopLevelResource.INSTANCE, id);
Set<String> labels = starredChangesUtil.getLabels(user.getAccountId(), change.getId());
return new AccountResource.Star(user, change, labels);
}
Aggregations