summaryrefslogtreecommitdiffstats
path: root/java/com/google/gerrit/server/account/AccountTagProvider.java
blob: ddb133151c250ced6d3bdeb5c9b5c1ce9a3c33b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.google.gerrit.server.account;

import com.google.gerrit.entities.Account;
import com.google.gerrit.extensions.annotations.ExtensionPoint;
import java.util.List;

/**
 * An extension point for plugins to define their own account tags in addition to the ones defined
 * at {@link com.google.gerrit.extensions.common.AccountInfo.Tags}.
 */
@ExtensionPoint
public interface AccountTagProvider {
  List<String> getTags(Account.Id id);
}