-
Notifications
You must be signed in to change notification settings - Fork 176
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
MOSIP-16638 : Ignore duplicate requests for same latest transaction i… Co-authored-by: Sasikumar Ganesan <[email protected]>
- Loading branch information
1 parent
68305da
commit 5acb934
Showing
3 changed files
with
81 additions
and
44 deletions.
There are no files selected for viewing
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
46 changes: 24 additions & 22 deletions
46
...cessor-core/src/main/java/io/mosip/registration/processor/core/constant/AbisConstant.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,22 +1,24 @@ | ||
package io.mosip.registration.processor.core.constant; | ||
|
||
public interface AbisConstant { | ||
|
||
static final String IDENTIFY = "IDENTIFY"; | ||
|
||
static final String TYPE = "type"; | ||
|
||
static final String ALL = "all"; | ||
|
||
static final String UIN = "UIN"; | ||
|
||
static final String PRE_ABIS_IDENTIFICATION = "PRE_ABIS_IDENTIFICATION"; | ||
|
||
static final String POST_ABIS_IDENTIFICATION = "POST_ABIS_IDENTIFICATION"; | ||
|
||
static final String PROCESSED = "PROCESSED"; | ||
|
||
static final String RE_REGISTER = "RE-REGISTER"; | ||
|
||
|
||
} | ||
package io.mosip.registration.processor.core.constant; | ||
|
||
public interface AbisConstant { | ||
|
||
static final String IDENTIFY = "IDENTIFY"; | ||
|
||
static final String TYPE = "type"; | ||
|
||
static final String ALL = "all"; | ||
|
||
static final String UIN = "UIN"; | ||
|
||
static final String PRE_ABIS_IDENTIFICATION = "PRE_ABIS_IDENTIFICATION"; | ||
|
||
static final String POST_ABIS_IDENTIFICATION = "POST_ABIS_IDENTIFICATION"; | ||
|
||
static final String DUPLICATE_FOR_SAME_TRANSACTION_ID = "DUPLICATE_FOR_SAME_TRANSACTION_ID"; | ||
|
||
static final String PROCESSED = "PROCESSED"; | ||
|
||
static final String RE_REGISTER = "RE-REGISTER"; | ||
|
||
|
||
} |
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