@@ -11,6 +11,10 @@ public class ZeroCodeCsvReport {
1111 String requestTimeStamp ;
1212 String responseTimeStamp ;
1313 private Double responseDelayMilliSec ;
14+ private String metaAuthors ;
15+ private String metaTickets ;
16+ private String metaCategories ;
17+ private String metaOthers ;
1418
1519 public ZeroCodeCsvReport (String scenarioName , Integer scenarioLoop , String stepName , Integer stepLoop ,
1620 String correlationId , String result , String method , String requestTimeStamp ,
@@ -67,6 +71,38 @@ public String getResponseTimeStamp() {
6771 return responseTimeStamp ;
6872 }
6973
74+ public String getMetaAuthors () {
75+ return metaAuthors ;
76+ }
77+
78+ public void setMetaAuthors (String metaAuthors ) {
79+ this .metaAuthors = metaAuthors ;
80+ }
81+
82+ public String getMetaTickets () {
83+ return metaTickets ;
84+ }
85+
86+ public void setMetaTickets (String metaTickets ) {
87+ this .metaTickets = metaTickets ;
88+ }
89+
90+ public String getMetaCategories () {
91+ return metaCategories ;
92+ }
93+
94+ public void setMetaCategories (String metaCategories ) {
95+ this .metaCategories = metaCategories ;
96+ }
97+
98+ public String getMetaOthers () {
99+ return metaOthers ;
100+ }
101+
102+ public void setMetaOthers (String metaOthers ) {
103+ this .metaOthers = metaOthers ;
104+ }
105+
70106 @ Override
71107 public String toString () {
72108 return "ZeroCodeCsvReport{" +
@@ -75,11 +111,15 @@ public String toString() {
75111 ", stepName='" + stepName + '\'' +
76112 ", stepLoop=" + stepLoop +
77113 ", correlationId='" + correlationId + '\'' +
114+ ", requestTimeStamp='" + requestTimeStamp + '\'' +
115+ ", responseDelayMilliSec=" + responseDelayMilliSec +
116+ ", responseTimeStamp='" + responseTimeStamp + '\'' +
78117 ", result='" + result + '\'' +
79118 ", method='" + method + '\'' +
80- ", requestTimeStamp=" + requestTimeStamp +
81- ", responseTimeStamp=" + responseTimeStamp +
82- ", responseDelayMilliSec=" + responseDelayMilliSec +
119+ ", metaAuthors='" + metaAuthors + '\'' +
120+ ", metaTickets='" + metaTickets + '\'' +
121+ ", metaCategories='" + metaCategories + '\'' +
122+ ", metaOthers='" + metaOthers + '\'' +
83123 '}' ;
84124 }
85125}
0 commit comments