-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSimpleJiraCreation.java
More file actions
99 lines (85 loc) · 2.37 KB
/
SimpleJiraCreation.java
File metadata and controls
99 lines (85 loc) · 2.37 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
import java.time.LocalDate;
public class SimpleJiraCreation {
public String getPriorityId() {
return priorityId;
}
public String getProjectKey() {
return projectKey;
}
public String getTypeId() {
return typeId;
}
public String getSummary() {
return summary;
}
public String getDescription() {
return description;
}
public String getEpicKey() {
return epicKey;
}
public LocalDate getDueDate() {
return dueDate;
}
public String getAssigneeUserName() {
return assigneeUserName;
}
public String getReporterUserName() {
return reporterUserName;
}
public String getCustomer() {
return customer;
}
public int getWorkflowActionId() {
return workflowActionId;
}
private String priorityId;
private String projectKey;
private String typeId;
private String summary;
private String description;
private String epicKey;
private LocalDate dueDate;
private String assigneeUserName;
private String reporterUserName;
private String customer;
private int workflowActionId;
public SimpleJiraCreation(
String priorityId,
String projectKey,
String typeId,
String summary,
String description,
String epicKey,
LocalDate dueDate,
String assigneeUserName,
String reporterUserName,
String customer,
int workflowActionId) {
this.priorityId = priorityId;
this.projectKey = projectKey;
this.typeId = typeId;
this.summary = summary;
this.description = description;
this.epicKey = epicKey;
this.dueDate = dueDate;
this.assigneeUserName = assigneeUserName;
this.reporterUserName = reporterUserName;
this.customer = customer;
this.workflowActionId = workflowActionId;
}
public SimpleJiraCreation(
String priorityId,
String projectKey,
String typeId,
String summary,
String description,
String customer) {
this.priorityId = priorityId;
this.projectKey = projectKey;
this.typeId = typeId;
this.summary = summary;
this.description = description;
this.customer = customer;
}
}