Skip to content

Commit

Permalink
Merge pull request #1293 from egovernments/HDDF-1775
Browse files Browse the repository at this point in the history
updating task status for handling validation failure
  • Loading branch information
saiprakash-eGov authored Dec 20, 2024
2 parents fcf4825 + df4aab8 commit 55ba287
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 3 deletions.
2 changes: 1 addition & 1 deletion health-services/libraries/health-services-models/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.egov.common</groupId>
<artifactId>health-services-models</artifactId>
<version>1.0.21-SNAPSHOT</version>
<version>1.0.21-impel-SNAPSHOT</version>
<properties>
<java.version>17</java.version>
<maven.compiler.source>${java.version}</maven.compiler.source>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,21 @@ public enum TaskStatus {
* This status signifies that the task has not been processed or
* handled yet.
*/
NOT_ADMINISTERED("NOT_ADMINISTERED");
NOT_ADMINISTERED("NOT_ADMINISTERED"),

/**
* Indicates that the beneficiary is ineligible.
* This status means that the individual or entity for whom the task
* was intended is ineligible
*/
BENEFICIARY_INELIGIBLE("BENEFICIARY_INELIGIBLE"),

/**
* Indicates that the beneficiary is ineligible.
* This status means that the individual or entity for whom the task
* was intended was referred to some institution
*/
BENEFICIARY_REFERRED("BENEFICIARY_REFERRED");

// The string value associated with the task status.
private String value;
Expand Down
2 changes: 1 addition & 1 deletion health-services/project/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
<dependency>
<groupId>org.egov.common</groupId>
<artifactId>health-services-models</artifactId>
<version>1.0.21-SNAPSHOT</version>
<version>1.0.21-impel-SNAPSHOT</version>
<scope>compile</scope>
</dependency>
<dependency>
Expand Down

0 comments on commit 55ba287

Please sign in to comment.