X-Git-Url: http://200.18.67.61/gitweb/?a=blobdiff_plain;f=src%2Fjava%2Forg%2Fufcspa%2Fsimdecs%2Fbn%2Fentity%2FBayesianNetwork.java;fp=src%2Fjava%2Forg%2Fufcspa%2Fsimdecs%2Fbn%2Fentity%2FBayesianNetwork.java;h=a17735e853ff1af0ebc14f3b507ec635e2204505;hb=5d05ee58812cfa8b58ab2dcf93a5d3a3bb71d6aa;hp=0000000000000000000000000000000000000000;hpb=f4704af31d5b59576ddef9abc137cee227d42def;p=simdecs.git diff --git a/src/java/org/ufcspa/simdecs/bn/entity/BayesianNetwork.java b/src/java/org/ufcspa/simdecs/bn/entity/BayesianNetwork.java new file mode 100644 index 0000000..a17735e --- /dev/null +++ b/src/java/org/ufcspa/simdecs/bn/entity/BayesianNetwork.java @@ -0,0 +1,76 @@ +/* + * 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 java.util.List; +import javax.persistence.*; + +/** + * + * @author mchelem + */ +@Entity +public class BayesianNetwork implements Serializable { + private static final long serialVersionUID = 1L; + @Id + @GeneratedValue(strategy = GenerationType.AUTO) + private Long id; + + private String name; + + @OneToMany(cascade = javax.persistence.CascadeType.ALL, mappedBy = "bayesianNetwork") + private List nodes; + + public Long getId() { + return id; + } + + public void setId(Long id) { + this.id = id; + } + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name; + } + + public List getNodes() { + return nodes; + } + + public void setNodes(List nodes) { + this.nodes = nodes; + } + + @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 BayesianNetwork)) { + return false; + } + BayesianNetwork other = (BayesianNetwork) 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 name; + } + +}