/* * Copyright 2009 Alberto Gimeno <gimenete at gmail.com> * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package siena.hbase.test; import siena.Column; import siena.Generator; import siena.Id; import siena.Model; import siena.Query; import siena.Table; @Table("people") public class Person extends Model { @Id(Generator.AUTO_INCREMENT) public String id; @Column("first_name") public String firstName; @Column("last_name") public String lastName; public String city; public transient String foo; public Person() { } public Person(String id, String firstName, String lastName, String city) { this.id = id; this.firstName = firstName; this.lastName = lastName; this.city = city; } public static Person get(String id) { Person p = new Person(); p.id = id; p.get(); return p; } public static Query<Person> all() { return Model.all(Person.class); } public String toString() { return "id: "+id+", firstName: "+firstName+", lastName: "+lastName+", city: "+city; } @Override public int hashCode() { final int prime = 31; int result = super.hashCode(); result = prime * result + ((city == null) ? 0 : city.hashCode()); result = prime * result + ((firstName == null) ? 0 : firstName.hashCode()); result = prime * result + ((id == null) ? 0 : id.hashCode()); result = prime * result + ((lastName == null) ? 0 : lastName.hashCode()); return result; } @Override public boolean equals(Object obj) { if (this == obj) return true; if (!super.equals(obj)) return false; if (getClass() != obj.getClass()) return false; Person other = (Person) obj; if (city == null) { if (other.city != null) return false; } else if (!city.equals(other.city)) return false; if (firstName == null) { if (other.firstName != null) return false; } else if (!firstName.equals(other.firstName)) return false; if (id == null) { if (other.id != null) return false; } else if (!id.equals(other.id)) return false; if (lastName == null) { if (other.lastName != null) return false; } else if (!lastName.equals(other.lastName)) return false; return true; } }