Class InternalGroupCreation
- java.lang.Object
-
- com.google.gerrit.server.group.db.InternalGroupCreation
-
public abstract class InternalGroupCreation extends Object
Definition of all properties necessary for a group creation.An instance of
InternalGroupCreation
is a blueprint for a group which should be created.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
InternalGroupCreation.Builder
-
Constructor Summary
Constructors Constructor Description InternalGroupCreation()
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description static InternalGroupCreation.Builder
builder()
abstract AccountGroup.UUID
getGroupUUID()
Defines the UUID the group should haveabstract AccountGroup.Id
getId()
Defines the numeric ID the group should haveabstract AccountGroup.NameKey
getNameKey()
Defines the name the group should have
-
-
-
Method Detail
-
getId
public abstract AccountGroup.Id getId()
Defines the numeric ID the group should have
-
getNameKey
public abstract AccountGroup.NameKey getNameKey()
Defines the name the group should have
-
getGroupUUID
public abstract AccountGroup.UUID getGroupUUID()
Defines the UUID the group should have
-
builder
public static InternalGroupCreation.Builder builder()
-
-