Class ChangeInput
- java.lang.Object
-
- com.google.gerrit.extensions.common.ChangeInput
-
public class ChangeInput extends Object
-
-
Field Summary
Fields Modifier and Type Field Description String
baseChange
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
-
newBranch
public Boolean newBranch
-
merge
public MergeInput merge
-
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
-
-