Added entities for the bayesian network upload.
[simdecs.git] / src / java / org / ufcspa / simdecs / bn / entity / Answer.java
diff --git a/src/java/org/ufcspa/simdecs/bn/entity/Answer.java b/src/java/org/ufcspa/simdecs/bn/entity/Answer.java
new file mode 100644 (file)
index 0000000..36c428f
--- /dev/null
@@ -0,0 +1,85 @@
+/*
+ * To change this template, choose Tools | Templates
+ * and open the template in the editor.
+ */
+package org.ufcspa.simdecs.bn.entity;
+
+import java.io.Serializable;
+import javax.persistence.*;
+
+/**
+ *
+ * @author mchelem
+ */
+@Entity
+public class Answer implements Serializable {
+    private static final long serialVersionUID = 1L;
+    @Id
+    @GeneratedValue(strategy = GenerationType.AUTO)
+    private Long id;
+    
+    private String text;
+    
+    private float likelihood;
+    
+    @ManyToOne
+    private Question question;
+
+    public Long getId() {
+        return id;
+    }
+
+    public void setId(Long id) {
+        this.id = id;
+    }
+
+    public String getText() {
+        return text;
+    }
+
+    public void setText(String text) {
+        this.text = text;
+    }
+
+    public float getLikelihood() {
+        return likelihood;
+    }
+
+    public void setLikelihood(float likelihood) {
+        this.likelihood = likelihood;
+    }
+
+    public Question getQuestion() {
+        return question;
+    }
+
+    public void setQuestion(Question question) {
+        this.question = question;
+    }
+
+    @Override
+    public int hashCode() {
+        int hash = 0;
+        hash += (id != null ? id.hashCode() : 0);
+        return hash;
+    }
+
+    @Override
+    public boolean equals(Object object) {
+        // TODO: Warning - this method won't work in the case the id fields are not set
+        if (!(object instanceof Answer)) {
+            return false;
+        }
+        Answer other = (Answer) object;
+        if ((this.id == null && other.id != null) || (this.id != null && !this.id.equals(other.id))) {
+            return false;
+        }
+        return true;
+    }
+
+    @Override
+    public String toString() {
+        return "org.ufcspa.simdecs.entity.Answer[ id=" + id + " ]";
+    }
+    
+}