Eclipseplugins
CherryPickSettings.java
1 package com.proalpha.pds.gitutils.cherrypick;
2 
3 public class CherryPickSettings {
4 
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;
13 
14  public String getTargetRepository() {
15  return targetRepository;
16  }
17 
18  public void setTargetRepository(String targetRepository) {
19  this.targetRepository = targetRepository;
20  }
21 
22  public String getTargetBranch() {
23  return targetBranch;
24  }
25 
26  public void setTargetBranch(String targetBranch) {
27  this.targetBranch = targetBranch;
28  }
29 
30  public String getTargetBranchPoint() {
31  return targetBranchPoint;
32  }
33 
34  public void setTargetBranchPoint(String targetBranchPoint) {
35  this.targetBranchPoint = targetBranchPoint;
36  }
37 
38  public boolean isUpdateTargetBranchPoint() {
39  return updateTargetBranchPoint;
40  }
41 
42  public void setUpdateTargetBranchPoint(boolean updateTargetBranchPoint) {
43  this.updateTargetBranchPoint = updateTargetBranchPoint;
44  }
45 
46  public String getTargetIssue() {
47  return targetIssue;
48  }
49 
50  public void setTargetIssue(String targetIssue) {
51  this.targetIssue = targetIssue;
52  }
53 
54  public String getSourceRepoString() {
55  return sourceRepoString;
56  }
57 
58  public void setSourceRepoString(String sourceProjectString, String sourceRepoString) {
59  this.sourceRepoString = sourceProjectString + "/" + sourceRepoString;
60  }
61 
62  public String getSourceBranch() {
63  return sourceBranch;
64  }
65 
66  public void setSourceBranch(String sourceBranch) {
67  this.sourceBranch = sourceBranch;
68  }
69 
70  public String getSourceIssue() {
71  return sourceIssue;
72  }
73 
74  public void setSourceIssue(String sourceIssue) {
75  this.sourceIssue = sourceIssue;
76  }
77 
78 }