Class GroupField
- java.lang.Object
-
- com.google.gerrit.server.index.group.GroupField
-
public class GroupField extends Object
Secondary index schemas for groups.
-
-
Field Summary
Fields Modifier and Type Field Description static FieldDef<InternalGroup,Timestamp>
CREATED_ON
Timestamp indicating when this group was created.static FieldDef<InternalGroup,String>
DESCRIPTION
Group description.static FieldDef<InternalGroup,Integer>
ID
Legacy group ID.static FieldDef<InternalGroup,String>
IS_VISIBLE_TO_ALL
Whether the group is visible to all users.static FieldDef<InternalGroup,Iterable<Integer>>
MEMBER
static FieldDef<InternalGroup,String>
NAME
Group name.static FieldDef<InternalGroup,Iterable<String>>
NAME_PART
Prefix match on group name parts.static FieldDef<InternalGroup,String>
OWNER_UUID
Group owner UUID.static FieldDef<InternalGroup,byte[]>
REF_STATE
ObjectId of HEAD:refs/groups/. static FieldDef<InternalGroup,Iterable<String>>
SUBGROUP
static FieldDef<InternalGroup,String>
UUID
Group UUID.
-
Constructor Summary
Constructors Constructor Description GroupField()
-
-
-
Field Detail
-
ID
public static final FieldDef<InternalGroup,Integer> ID
Legacy group ID.
-
UUID
public static final FieldDef<InternalGroup,String> UUID
Group UUID.
-
OWNER_UUID
public static final FieldDef<InternalGroup,String> OWNER_UUID
Group owner UUID.
-
CREATED_ON
public static final FieldDef<InternalGroup,Timestamp> CREATED_ON
Timestamp indicating when this group was created.
-
NAME
public static final FieldDef<InternalGroup,String> NAME
Group name.
-
NAME_PART
public static final FieldDef<InternalGroup,Iterable<String>> NAME_PART
Prefix match on group name parts.
-
DESCRIPTION
public static final FieldDef<InternalGroup,String> DESCRIPTION
Group description.
-
IS_VISIBLE_TO_ALL
public static final FieldDef<InternalGroup,String> IS_VISIBLE_TO_ALL
Whether the group is visible to all users.
-
MEMBER
public static final FieldDef<InternalGroup,Iterable<Integer>> MEMBER
-
SUBGROUP
public static final FieldDef<InternalGroup,Iterable<String>> SUBGROUP
-
REF_STATE
public static final FieldDef<InternalGroup,byte[]> REF_STATE
ObjectId of HEAD:refs/groups/.
-
-