Class ChangeInput
- java.lang.Object
-
- com.google.gerrit.extensions.common.ChangeInput
-
public class ChangeInput extends Object
-
-
Field Summary
Fields Modifier and Type Field Description AccountInput
author
String
baseChange
String
baseCommit
String
branch
Boolean
isPrivate
MergeInput
merge
Boolean
newBranch
NotifyHandling
notify
Who to send email notifications to after change is created.Map<RecipientType,NotifyInfo>
notifyDetails
String
project
ChangeStatus
status
String
subject
String
topic
Boolean
workInProgress
-
Constructor Summary
Constructors Constructor Description ChangeInput()
ChangeInput(String project, String branch, String subject)
Creates a newChangeInput
with the minimal attributes required for a successful creation of a new change.
-
-
-
Field Detail
-
project
public String project
-
branch
public String branch
-
subject
public String subject
-
topic
public String topic
-
status
public ChangeStatus status
-
isPrivate
public Boolean isPrivate
-
workInProgress
public Boolean workInProgress
-
baseChange
public String baseChange
-
baseCommit
public String baseCommit
-
newBranch
public Boolean newBranch
-
merge
public MergeInput merge
-
author
public AccountInput author
-
notify
public NotifyHandling notify
Who to send email notifications to after change is created.
-
notifyDetails
public Map<RecipientType,NotifyInfo> notifyDetails
-
-
Constructor Detail
-
ChangeInput
public ChangeInput()
-
ChangeInput
public ChangeInput(String project, String branch, String subject)
Creates a newChangeInput
with the minimal attributes required for a successful creation of a new change.- Parameters:
project
- the project name for the new changebranch
- the branch name for the new changesubject
- the subject (commit message) for the new change
-
-