@@ -97,7 +97,8 @@ public void testOpenIDCClientSecretPostPasswordWorkflowExecution() throws Except
9797 .setHeader ("Content-Type" , "application/json" )
9898 .setResponseCode (200 ));
9999
100- Workflow workflow = readWorkflowFromClasspath ("openidcClientSecretPostPasswordHttpCall.yaml" );
100+ Workflow workflow =
101+ readWorkflowFromClasspath ("workflows-samples/openidcClientSecretPostPasswordHttpCall.yaml" );
101102 Map <String , Object > result ;
102103 System .err .println ("START" );
103104 try (WorkflowApplication app = WorkflowApplication .builder ().build ()) {
@@ -145,7 +146,8 @@ public void testOpenIDCClientSecretPostWithArgsWorkflowExecution() throws Except
145146 .setResponseCode (200 ));
146147
147148 Workflow workflow =
148- readWorkflowFromClasspath ("openidcClientSecretPostPasswordAsArgHttpCall.yaml" );
149+ readWorkflowFromClasspath (
150+ "workflows-samples/openidcClientSecretPostPasswordAsArgHttpCall.yaml" );
149151 Map <String , Object > result ;
150152 Map <String , String > params =
151153 Map .of (
@@ -198,7 +200,8 @@ public void testOpenIDCClientSecretPostWithArgsAllGrantsWorkflowExecution() thro
198200 .setResponseCode (200 ));
199201
200202 Workflow workflow =
201- readWorkflowFromClasspath ("openidcClientSecretPostPasswordAllGrantsHttpCall.yaml" );
203+ readWorkflowFromClasspath (
204+ "workflows-samples/openidcClientSecretPostPasswordAllGrantsHttpCall.yaml" );
202205 Map <String , Object > result ;
203206 Map <String , String > params =
204207 Map .of (
@@ -259,7 +262,8 @@ public void testOpenIDCClientSecretPostClientCredentialsParamsWorkflowExecution(
259262 .setResponseCode (200 ));
260263
261264 Workflow workflow =
262- readWorkflowFromClasspath ("openidcClientSecretPostClientCredentialsParamsHttpCall.yaml" );
265+ readWorkflowFromClasspath (
266+ "workflows-samples/openidcClientSecretPostClientCredentialsParamsHttpCall.yaml" );
263267 Map <String , Object > result ;
264268 Map <String , String > params =
265269 Map .of (
@@ -311,7 +315,7 @@ public void testOpenIDCClientSecretPostClientCredentialsParamsNoEndpointWorkflow
311315
312316 Workflow workflow =
313317 readWorkflowFromClasspath (
314- "openidcClientSecretPostClientCredentialsParamsNoEndPointHttpCall.yaml" );
318+ "workflows-samples/ openidcClientSecretPostClientCredentialsParamsNoEndPointHttpCall.yaml" );
315319 Map <String , Object > result ;
316320 Map <String , String > params =
317321 Map .of (
@@ -358,7 +362,8 @@ public void testOpenIDCJSONPasswordWorkflowExecution() throws Exception {
358362 .setHeader ("Content-Type" , "application/json" )
359363 .setResponseCode (200 ));
360364
361- Workflow workflow = readWorkflowFromClasspath ("openidcJSONPasswordHttpCall.yaml" );
365+ Workflow workflow =
366+ readWorkflowFromClasspath ("workflows-samples/openidcJSONPasswordHttpCall.yaml" );
362367 Map <String , Object > result ;
363368 try (WorkflowApplication app = WorkflowApplication .builder ().build ()) {
364369 result =
@@ -415,7 +420,8 @@ public void testOpenIDCJSONWithArgsWorkflowExecution() throws Exception {
415420 .setHeader ("Content-Type" , "application/json" )
416421 .setResponseCode (200 ));
417422
418- Workflow workflow = readWorkflowFromClasspath ("openidcJSONPasswordAsArgHttpCall.yaml" );
423+ Workflow workflow =
424+ readWorkflowFromClasspath ("workflows-samples/openidcJSONPasswordAsArgHttpCall.yaml" );
419425 Map <String , Object > result ;
420426 Map <String , String > params =
421427 Map .of (
@@ -476,7 +482,8 @@ public void testOpenIDCJSONWithArgsNoEndPointWorkflowExecution() throws Exceptio
476482 .setHeader ("Content-Type" , "application/json" )
477483 .setResponseCode (200 ));
478484
479- Workflow workflow = readWorkflowFromClasspath ("openidcJSONPasswordNoEndpointsHttpCall.yaml" );
485+ Workflow workflow =
486+ readWorkflowFromClasspath ("workflows-samples/openidcJSONPasswordNoEndpointsHttpCall.yaml" );
480487 Map <String , Object > result ;
481488 Map <String , String > params =
482489 Map .of (
@@ -536,7 +543,8 @@ public void testOpenIDCJSONWithArgsAllGrantsWorkflowExecution() throws Exception
536543 .setHeader ("Content-Type" , "application/json" )
537544 .setResponseCode (200 ));
538545
539- Workflow workflow = readWorkflowFromClasspath ("openidcJSONPasswordAllGrantsHttpCall.yaml" );
546+ Workflow workflow =
547+ readWorkflowFromClasspath ("workflows-samples/openidcJSONPasswordAllGrantsHttpCall.yaml" );
540548 Map <String , Object > result ;
541549 Map <String , String > params =
542550 Map .of (
@@ -610,7 +618,8 @@ public void testOpenIDCJSONClientCredentialsWorkflowExecution() throws Exception
610618 .setHeader ("Content-Type" , "application/json" )
611619 .setResponseCode (200 ));
612620
613- Workflow workflow = readWorkflowFromClasspath ("openidcJSONClientCredentialsHttpCall.yaml" );
621+ Workflow workflow =
622+ readWorkflowFromClasspath ("workflows-samples/openidcJSONClientCredentialsHttpCall.yaml" );
614623 Map <String , Object > result ;
615624 try (WorkflowApplication app = WorkflowApplication .builder ().build ()) {
616625 result =
@@ -660,7 +669,8 @@ public void testOpenIDCJSONClientCredentialsParamsWorkflowExecution() throws Exc
660669 .setResponseCode (200 ));
661670
662671 Workflow workflow =
663- readWorkflowFromClasspath ("openidcJSONClientCredentialsParamsHttpCall.yaml" );
672+ readWorkflowFromClasspath (
673+ "workflows-samples/openidcJSONClientCredentialsParamsHttpCall.yaml" );
664674 Map <String , Object > result ;
665675 Map <String , String > params =
666676 Map .of (
@@ -715,7 +725,8 @@ public void testOpenIDCJSONClientCredentialsParamsNoEndpointWorkflowExecution()
715725 .setResponseCode (200 ));
716726
717727 Workflow workflow =
718- readWorkflowFromClasspath ("openidcJSONClientCredentialsParamsNoEndPointHttpCall.yaml" );
728+ readWorkflowFromClasspath (
729+ "workflows-samples/openidcJSONClientCredentialsParamsNoEndPointHttpCall.yaml" );
719730 Map <String , Object > result ;
720731 Map <String , String > params =
721732 Map .of (
0 commit comments