package org.infinispan.test.integration.as; import org.hibernate.search.annotations.Analyze; import org.hibernate.search.annotations.Field; import org.hibernate.search.annotations.Indexed; import org.hibernate.search.annotations.Store; /** * @author Tristan Tarrant * @since 7.0 */ @Indexed(index = "indexA") public class TestEntity { @Field(store = Store.YES, analyze = Analyze.NO) private final String name; @Field(store = Store.YES) private final String surname; private final long id; private final String note; public TestEntity(TestEntity e) { this.id = e.getId(); this.name = e.getName(); this.surname = e.getSurname(); this.note = e.getNote(); } public TestEntity(String name, String surname, long id, String note) { this.name = name; this.surname = surname; this.id = id; this.note = note; } public String getName() { return name; } public String getSurname() { return surname; } public long getId() { return id; } public String getNote() { return note; } @Override public boolean equals(Object o) { if (this == o) return true; if (o == null || getClass() != o.getClass()) return false; TestEntity that = (TestEntity) o; if (id != that.id) return false; if (name != null ? !name.equals(that.name) : that.name != null) return false; if (note != null ? !note.equals(that.note) : that.note != null) return false; if (surname != null ? !surname.equals(that.surname) : that.surname != null) return false; return true; } @Override public int hashCode() { int result = name != null ? name.hashCode() : 0; result = 31 * result + (surname != null ? surname.hashCode() : 0); result = 31 * result + (int) (id ^ (id >>> 32)); result = 31 * result + (note != null ? note.hashCode() : 0); return result; } }