[ 
https://issues.apache.org/jira/browse/AIRAVATA-2728?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16457034#comment-16457034
 ] 

ASF GitHub Bot commented on AIRAVATA-2728:
------------------------------------------

machristie commented on a change in pull request #191: [AIRAVATA-2728] 
Refactoring Experiment Catalog Implementation
URL: https://github.com/apache/airavata/pull/191#discussion_r184798069
 
 

 ##########
 File path: 
modules/registry-refactoring/src/main/java/org/apache/airavata/registry/core/entities/expcatalog/ExperimentInputEntity.java
 ##########
 @@ -21,29 +21,69 @@
 package org.apache.airavata.registry.core.entities.expcatalog;
 
 import javax.persistence.*;
+import java.io.Serializable;
 
+/**
+ * The persistent class for the experiment_input database table.
+ */
 @Entity
-@Table(name = "EXPCAT_EXPERIMENT_INPUT")
+@Table(name = "EXPERIMENT_INPUT")
 @IdClass(ExperimentInputPK.class)
-public class ExperimentInputEntity {
+public class ExperimentInputEntity implements Serializable {
+    private static final long serialVersionUID = 1L;
+
+    @Id
+    @Column(name = "EXPERIMENT_ID")
     private String experimentId;
-    public String name;
-    public String value;
-    public String type;
-    public String applicationArgument;
-    public boolean standardInput;
-    public String userFriendlyDescription;
-    public String metaData;
-    public int inputOrder;
-    public boolean isRequired;
-    public boolean requiredToAddedToCommandLine;
-    public boolean dataStaged;
-    public String storageResourceId;
 
+    @Id
+    @Column(name = "INPUT_NAME")
+    private String name;
+
+    @Lob
+    @Column(name = "INPUT_VALUE")
+    private String value;
+
+    @Column(name = "INPUT_TYPE")
 
 Review comment:
   The name of the column is DATA_TYPE.

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


> Refactoring Experiment Catalog Implementation
> ---------------------------------------------
>
>                 Key: AIRAVATA-2728
>                 URL: https://issues.apache.org/jira/browse/AIRAVATA-2728
>             Project: Airavata
>          Issue Type: Improvement
>          Components: Registry API
>            Reporter: Sneha Tilak
>            Assignee: Sneha Tilak
>            Priority: Major
>




--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

Reply via email to