Skip to content

Commit

Permalink
Added args in comments
Browse files Browse the repository at this point in the history
  • Loading branch information
alexisszmundy committed Jul 15, 2024
1 parent 305845b commit da58c6a
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,10 @@ public void run(String... args) {
checkArgs(args);

//Parse arguments
//0. Service to use (MAIN,FILEBYFILE,GENESIS,LUNATIC_ONLY)
//1. Archive at end of execution (false or true)
//2. Integrate all reporting datas (false or true)
//3. Campaign name
KraftwerkServiceType kraftwerkServiceType = KraftwerkServiceType.valueOf(args[0]);
boolean archiveAtEnd = Boolean.parseBoolean(args[1]);
boolean withAllReportingData = Boolean.parseBoolean(args[2]);
Expand Down

0 comments on commit da58c6a

Please sign in to comment.