1 package com.proalpha.pds.gitutils.cherrypick;
5 private String targetRepository;
6 private String targetBranchPoint;
7 private boolean updateTargetBranchPoint =
true;
8 private String targetBranch;
9 private String targetIssue;
10 private String sourceRepoString;
11 private String sourceBranch;
12 private String sourceIssue;
14 public String getTargetRepository() {
15 return targetRepository;
18 public void setTargetRepository(String targetRepository) {
19 this.targetRepository = targetRepository;
22 public String getTargetBranch() {
26 public void setTargetBranch(String targetBranch) {
27 this.targetBranch = targetBranch;
30 public String getTargetBranchPoint() {
31 return targetBranchPoint;
34 public void setTargetBranchPoint(String targetBranchPoint) {
35 this.targetBranchPoint = targetBranchPoint;
38 public boolean isUpdateTargetBranchPoint() {
39 return updateTargetBranchPoint;
42 public void setUpdateTargetBranchPoint(
boolean updateTargetBranchPoint) {
43 this.updateTargetBranchPoint = updateTargetBranchPoint;
46 public String getTargetIssue() {
50 public void setTargetIssue(String targetIssue) {
51 this.targetIssue = targetIssue;
54 public String getSourceRepoString() {
55 return sourceRepoString;
58 public void setSourceRepoString(String sourceProjectString, String sourceRepoString) {
59 this.sourceRepoString = sourceProjectString +
"/" + sourceRepoString;
62 public String getSourceBranch() {
66 public void setSourceBranch(String sourceBranch) {
67 this.sourceBranch = sourceBranch;
70 public String getSourceIssue() {
74 public void setSourceIssue(String sourceIssue) {
75 this.sourceIssue = sourceIssue;