You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airavata.apache.org by di...@apache.org on 2021/02/26 10:28:05 UTC

[airavata] branch custos-integration updated: Fixing incorrect column type

This is an automated email from the ASF dual-hosted git repository.

dimuthuupe pushed a commit to branch custos-integration
in repository https://gitbox.apache.org/repos/asf/airavata.git


The following commit(s) were added to refs/heads/custos-integration by this push:
     new 89829c7  Fixing incorrect column type
89829c7 is described below

commit 89829c7c165b5e366e123c5ad90b08b753e36f2b
Author: Dimuthu Wannipurage <di...@gmail.com>
AuthorDate: Fri Feb 26 05:27:54 2021 -0500

    Fixing incorrect column type
---
 .../registry/core/entities/expcatalog/ExperimentEntity.java   | 11 ++++++++++-
 1 file changed, 10 insertions(+), 1 deletion(-)

diff --git a/modules/registry/registry-core/src/main/java/org/apache/airavata/registry/core/entities/expcatalog/ExperimentEntity.java b/modules/registry/registry-core/src/main/java/org/apache/airavata/registry/core/entities/expcatalog/ExperimentEntity.java
index aa3d32b..bee3ccf 100644
--- a/modules/registry/registry-core/src/main/java/org/apache/airavata/registry/core/entities/expcatalog/ExperimentEntity.java
+++ b/modules/registry/registry-core/src/main/java/org/apache/airavata/registry/core/entities/expcatalog/ExperimentEntity.java
@@ -74,7 +74,7 @@ public class ExperimentEntity implements Serializable {
     public boolean enableEmailNotification;
 
     @Column(name = "CUSTOS_ID")
-    public boolean custosId;
+    public String custosId;
 
     @Lob
     @Column(name = "EMAIL_ADDRESSES")
@@ -259,4 +259,13 @@ public class ExperimentEntity implements Serializable {
     public void setProcesses(List<ProcessEntity> processes) {
         this.processes = processes;
     }
+
+    public String getCustosId() {
+        return custosId;
+    }
+
+    public ExperimentEntity setCustosId(String custosId) {
+        this.custosId = custosId;
+        return this;
+    }
 }