src/main/java/com/aws/amazonmq/blog/testcases/FIFO_Testcase_3.java [71:88]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
					.usingJobData("producerName", "producer_3")
					.usingJobData("queueName", queueName)
					.usingJobData("amazonMQSSLEndPoint", amazonMQSSLEndPoint)
					.usingJobData("username", username)
					.usingJobData("password", password)
					.usingJobData("useCaseId", useCaseId)
					.usingJobData("msgGroup", "Group-C")
					.usingJobData("numMsgs", numMsgs)
					.usingJobData("msgIdSequence", 350000)
					.usingJobData("msgPrefix", "C-").build();
			// define consumer jobs and tie them to MsgConsumer which does the actual work
			JobDetail job4 = newJob(MsgConsumer_CustomPrefetch.class).withIdentity(useCaseId.concat("-").concat("consumer-job1"), "group1")
					.usingJobData("consumerName", "consumer_1")
					.usingJobData("queueName", queueName)
					.usingJobData("amazonMQSSLEndPoint", amazonMQSSLEndPoint)
					.usingJobData("username", username)
					.usingJobData("password", password)
					.usingJobData("useCaseId", useCaseId)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/com/aws/amazonmq/blog/testcases/FIFO_Testcase_7.java [79:96]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
					.usingJobData("producerName", "producer_3")
					.usingJobData("queueName", queueName)
					.usingJobData("amazonMQSSLEndPoint", amazonMQSSLEndPoint)
					.usingJobData("username", username)
					.usingJobData("password", password)
					.usingJobData("useCaseId", useCaseId)
					.usingJobData("msgGroup", "Group-C")
					.usingJobData("numMsgs", numMsgs)
					.usingJobData("msgIdSequence", 350000)
					.usingJobData("msgPrefix", "C-").build();
			// define consumer jobs and tie them to MsgConsumer which does the actual work
			JobDetail job4 = newJob(MsgConsumer_CustomPrefetch.class).withIdentity(useCaseId.concat("-").concat("consumer-job1"), "group1")
					.usingJobData("consumerName", "consumer_1")
					.usingJobData("queueName", queueName)
					.usingJobData("amazonMQSSLEndPoint", amazonMQSSLEndPoint)
					.usingJobData("username", username)
					.usingJobData("password", password)
					.usingJobData("useCaseId", useCaseId)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



