1 package org.jahia.clipbuilder.sql.database.hibernate.model; 2 3 import java.io.Serializable ; 4 5 import org.apache.commons.lang.builder.*; 6 7 8 14 public class BaseObject implements Serializable { 15 private Long id; 16 public String toString() { 17 return ToStringBuilder.reflectionToString(this,ToStringStyle.MULTI_LINE_STYLE); 18 } 19 20 public boolean equals(Object o) { 21 return EqualsBuilder.reflectionEquals(this, o); 22 } 23 24 public int hashCode() { 25 return HashCodeBuilder.reflectionHashCode(this); 26 } 27 28 public Long getId() { 29 return id; 30 } 31 32 public void setId(Long id) { 33 this.id = id; 34 } 35 } 36 | Popular Tags |