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 17:15:27 UTC

[airavata] 01/03: Revert "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

commit 108137b0341fa34802c83a40ff386e2a8c8b4148
Author: Dimuthu Wannipurage <di...@gmail.com>
AuthorDate: Fri Feb 26 12:13:49 2021 -0500

    Revert "Fixing incorrect column type"
    
    This reverts commit 89829c7c
---
 .../registry/core/entities/expcatalog/ExperimentEntity.java   | 11 +----------
 1 file changed, 1 insertion(+), 10 deletions(-)

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 bee3ccf..aa3d32b 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 String custosId;
+    public boolean custosId;
 
     @Lob
     @Column(name = "EMAIL_ADDRESSES")
@@ -259,13 +259,4 @@ 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;
-    }
 }