/* * Hibernate OGM, Domain model persistence for NoSQL datastores * * License: GNU Lesser General Public License (LGPL), version 2.1 or later * See the lgpl.txt file in the root directory or <http://www.gnu.org/licenses/lgpl-2.1.html>. */ package org.hibernate.ogm.datastore.mongodb.test.query; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.Id; /** * @author Gunnar Morling */ @Entity public class Hypothesis { private String id; private String description; private int position; public Hypothesis() { } public Hypothesis(String id) { this.id = id; } @Id public String getId() { return id; } public void setId(String id) { this.id = id; } public String getDescription() { return description; } public void setDescription(String description) { this.description = description; } @Column(name = "pos") public int getPosition() { return position; } public void setPosition(int position) { this.position = position; } @Override public int hashCode() { final int prime = 31; int result = 1; result = prime * result + ( ( description == null ) ? 0 : description.hashCode() ); result = prime * result + ( ( id == null ) ? 0 : id.hashCode() ); result = prime * result + position; return result; } @Override public boolean equals(Object obj) { if ( this == obj ) { return true; } if ( obj == null ) { return false; } if ( getClass() != obj.getClass() ) { return false; } Hypothesis other = (Hypothesis) obj; if ( description == null ) { if ( other.description != null ) { return false; } } else if ( !description.equals( other.description ) ) { return false; } if ( id == null ) { if ( other.id != null ) { return false; } } else if ( !id.equals( other.id ) ) { return false; } if ( position != other.position ) { return false; } return true; } }