From cdce56b3ba65bf00d97003324bce0280f5137f5c Mon Sep 17 00:00:00 2001 From: prerna-egov Date: Fri, 6 Dec 2024 16:48:07 +0530 Subject: [PATCH 1/3] added BENEFICIARY_INELIGIBLE and BENEFICIARY_REFERRED in task status enum --- .../egov/common/models/project/TaskStatus.java | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/health-services/libraries/health-services-models/src/main/java/org/egov/common/models/project/TaskStatus.java b/health-services/libraries/health-services-models/src/main/java/org/egov/common/models/project/TaskStatus.java index a17652a89c0..c7d3ceca992 100644 --- a/health-services/libraries/health-services-models/src/main/java/org/egov/common/models/project/TaskStatus.java +++ b/health-services/libraries/health-services-models/src/main/java/org/egov/common/models/project/TaskStatus.java @@ -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; From e8baea98f540a6237eae7894c80e92529cb71461 Mon Sep 17 00:00:00 2001 From: prerna-egov Date: Fri, 6 Dec 2024 16:49:06 +0530 Subject: [PATCH 2/3] updated version for health-services-models to 1.0.21-impel-SNAPSHOT --- health-services/libraries/health-services-models/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/health-services/libraries/health-services-models/pom.xml b/health-services/libraries/health-services-models/pom.xml index 6ca95c3fe47..5b951c5b3b5 100644 --- a/health-services/libraries/health-services-models/pom.xml +++ b/health-services/libraries/health-services-models/pom.xml @@ -5,7 +5,7 @@ 4.0.0 org.egov.common health-services-models - 1.0.21-SNAPSHOT + 1.0.21-impel-SNAPSHOT 17 ${java.version} From df4aab8f554a2e2ccdb837aaed47e92f021933a6 Mon Sep 17 00:00:00 2001 From: prerna-egov Date: Fri, 6 Dec 2024 17:20:34 +0530 Subject: [PATCH 3/3] updated version for health-services-models to 1.0.21-impel-SNAPSHOT for project --- health-services/project/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/health-services/project/pom.xml b/health-services/project/pom.xml index fd0b688dcc3..1419d3ecf07 100644 --- a/health-services/project/pom.xml +++ b/health-services/project/pom.xml @@ -50,7 +50,7 @@ org.egov.common health-services-models - 1.0.21-SNAPSHOT + 1.0.21-impel-SNAPSHOT compile