File tree Expand file tree Collapse file tree
proxyserver/src/main/java/edu/suffolk/litlab/efsp/server/setup/tyler Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1010import edu .suffolk .litlab .efsp .server .logging .MDCWrappers ;
1111import edu .suffolk .litlab .efsp .server .services .AdminUserService ;
1212import edu .suffolk .litlab .efsp .server .services .CasesService ;
13+ import edu .suffolk .litlab .efsp .server .utils .CodesSanityCheckJob ;
1314import edu .suffolk .litlab .efsp .server .services .CourtSchedulingService ;
1415import edu .suffolk .litlab .efsp .server .services .EcfCodesService ;
1516import edu .suffolk .litlab .efsp .server .services .FilingReviewService ;
@@ -426,4 +427,15 @@ private JobDetail buildJob(final String jobName) {
426427 .usingJobData ("POSTGRES_PASSWORD" , this .pgPassword )
427428 .build ();
428429 }
430+
431+ private JobDetail buildCheckJob (final String jobName ) {
432+ return JobBuilder .newJob (CodesSanityCheckJob .class )
433+ .withIdentity (jobName , "codes-check-group" )
434+ .usingJobData ("TYLER_JURISDICTION" , this .jurisdiction .getName ())
435+ .usingJobData ("POSTGRES_URL" , this .pgUrl )
436+ .usingJobData ("POSTGRES_DB" , this .pgDb )
437+ .usingJobData ("POSTGRES_USERNAME" , this .pgUser )
438+ .usingJobData ("POSTGRES_PASSWORD" , this .pgPassword )
439+ .build ();
440+ }
429441}
You can’t perform that action at this time.
0 commit comments