@@ -13,6 +13,10 @@ public class ZeroCodeCsvReportBuilder {
1313 String requestTimeStamp ;
1414 String responseTimeStamp ;
1515 private Double responseDelayMilliSec ;
16+ private String metaAuthors ;
17+ private String metaTickets ;
18+ private String metaCategories ;
19+ private String metaOthers ;
1620
1721 public static ZeroCodeCsvReportBuilder newInstance () {
1822 return new ZeroCodeCsvReportBuilder ();
@@ -21,6 +25,10 @@ public static ZeroCodeCsvReportBuilder newInstance() {
2125 public ZeroCodeCsvReport build () {
2226 ZeroCodeCsvReport built = new ZeroCodeCsvReport (scenarioName ,scenarioLoop ,stepName , stepLoop ,
2327 correlationId , result , method , requestTimeStamp , responseTimeStamp , responseDelayMilliSec );
28+ built .setMetaAuthors (metaAuthors );
29+ built .setMetaTickets (metaTickets );
30+ built .setMetaCategories (metaCategories );
31+ built .setMetaOthers (metaOthers );
2432 return built ;
2533 }
2634
@@ -73,4 +81,24 @@ public ZeroCodeCsvReportBuilder responseDelayMilliSec(Double responseDelayMilliS
7381 this .responseDelayMilliSec = responseDelayMilliSec ;
7482 return this ;
7583 }
84+
85+ public ZeroCodeCsvReportBuilder metaAuthors (String metaAuthors ) {
86+ this .metaAuthors = metaAuthors ;
87+ return this ;
88+ }
89+
90+ public ZeroCodeCsvReportBuilder metaTickets (String metaTickets ) {
91+ this .metaTickets = metaTickets ;
92+ return this ;
93+ }
94+
95+ public ZeroCodeCsvReportBuilder metaCategories (String metaCategories ) {
96+ this .metaCategories = metaCategories ;
97+ return this ;
98+ }
99+
100+ public ZeroCodeCsvReportBuilder metaOthers (String metaOthers ) {
101+ this .metaOthers = metaOthers ;
102+ return this ;
103+ }
76104}
0 commit comments