-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
BAH-3331 | Add. Rest Client Implementation for Create Drug
* [Rahul] | Add. Rest Based Implementation * [Rahul] | Add. Endpoints For Each Job * [Parvathy, Rahul] | BAH-3331 | Add. Docker Flag Co-authored-by: Parvathy Babu <[email protected]> * [Parvathy, Rahul] | BAH-3331 | Add. Un/Escape Character Parser Co-authored-by: Parvathy Babu <[email protected]> * [Parvathy, Rahul] | BAH-3331 | Refactor. Rename Variables and Introduced Jobs Enum Co-authored-by: Parvathy Babu <[email protected]> * [Parvathy, Rahul] | BAH-3331 | Refactor. Rename Endpoint URL -> Odoo URL Co-authored-by: Parvathy Babu <[email protected]> --------- Co-authored-by: Rahul Ramesh <[email protected]>
- Loading branch information
1 parent
20014d5
commit 1798255
Showing
48 changed files
with
464 additions
and
171 deletions.
There are no files selected for viewing
15 changes: 15 additions & 0 deletions
15
openerp-atomfeed-service/src/main/java/org/bahmni/feed/openerp/AtomfeedServiceConstants.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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
package org.bahmni.feed.openerp; | ||
|
||
public enum AtomfeedServiceConstants { | ||
IS_REST_ENABLED("IS_ODOO_16"); | ||
|
||
private final String atomfeedServiceConstants; | ||
|
||
AtomfeedServiceConstants(String atomfeedServiceConstants) { | ||
this.atomfeedServiceConstants = atomfeedServiceConstants; | ||
} | ||
|
||
public String getAtomfeedServiceConstants() { | ||
return atomfeedServiceConstants; | ||
} | ||
} |
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
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
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
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
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
15 changes: 15 additions & 0 deletions
15
openerp-atomfeed-service/src/main/java/org/bahmni/feed/openerp/worker/Jobs.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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
package org.bahmni.feed.openerp.worker; | ||
|
||
public enum Jobs { | ||
DRUG_JOB("create.drug"); | ||
|
||
private final String jobRef; | ||
|
||
Jobs(String jobRef) { | ||
this.jobRef = jobRef; | ||
} | ||
|
||
public String getJobRef() { | ||
return jobRef; | ||
} | ||
} |
Oops, something went wrong.