-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added ASCII conversion.
- Loading branch information
weskubo-cgi
authored and
weskubo-cgi
committed
Feb 12, 2025
1 parent
31003bf
commit 904a73a
Showing
7 changed files
with
77 additions
and
6 deletions.
There are no files selected for viewing
10 changes: 10 additions & 0 deletions
10
...ca/bc/gov/chefs/etl/forms/pcd/chc/pcPatientServices/processor/PcdChcPCPSApiProcessor.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,20 @@ | ||
package ca.bc.gov.chefs.etl.forms.pcd.chc.pcPatientServices.processor; | ||
|
||
import static ca.bc.gov.chefs.etl.constant.Constants.PROPERTY_CHEFS_PAYLOAD; | ||
|
||
import org.apache.camel.Exchange; | ||
|
||
import ca.bc.gov.chefs.etl.constant.PCDConstants; | ||
import ca.bc.gov.chefs.etl.core.model.ChefsRequestPayload; | ||
import ca.bc.gov.chefs.etl.core.processor.BaseApiProcessor; | ||
|
||
public class PcdChcPCPSApiProcessor extends BaseApiProcessor { | ||
public PcdChcPCPSApiProcessor() { | ||
this.formPropertyName = PCDConstants.PCD_CHC_PCPS_PROPERTY; | ||
} | ||
|
||
@Override | ||
protected ChefsRequestPayload loadChefsPayload(Exchange exchange) { | ||
return exchange.getProperty(PROPERTY_CHEFS_PAYLOAD, ChefsRequestPayload.class); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 10 additions & 0 deletions
10
.../bc/gov/chefs/etl/forms/pcd/upcc/pcPatientServices/processor/PcdUpccPCPSApiProcessor.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,20 @@ | ||
package ca.bc.gov.chefs.etl.forms.pcd.upcc.pcPatientServices.processor; | ||
|
||
import static ca.bc.gov.chefs.etl.constant.Constants.PROPERTY_CHEFS_PAYLOAD; | ||
|
||
import org.apache.camel.Exchange; | ||
|
||
import ca.bc.gov.chefs.etl.constant.PCDConstants; | ||
import ca.bc.gov.chefs.etl.core.model.ChefsRequestPayload; | ||
import ca.bc.gov.chefs.etl.core.processor.BaseApiProcessor; | ||
|
||
public class PcdUpccPCPSApiProcessor extends BaseApiProcessor { | ||
public PcdUpccPCPSApiProcessor() { | ||
this.formPropertyName = PCDConstants.PCD_UPCC_PCPS_PROPERTY; | ||
} | ||
|
||
@Override | ||
protected ChefsRequestPayload loadChefsPayload(Exchange exchange) { | ||
return exchange.getProperty(PROPERTY_CHEFS_PAYLOAD, ChefsRequestPayload.class); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters