/* * Hibernate, Relational Persistence for Idiomatic Java * * 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.envers.test.integration.components.dynamic; import org.hibernate.envers.Audited; @Audited public class SimpleEntity { private Long id; private String simpleProperty; private AdvancedEntity parent; public SimpleEntity() { } public SimpleEntity(Long id, String simpleProperty) { this.id = id; this.simpleProperty = simpleProperty; } public Long getId() { return id; } public void setId(Long id) { this.id = id; } public String getSimpleProperty() { return simpleProperty; } public void setSimpleProperty(String simpleProperty) { this.simpleProperty = simpleProperty; } @Override public boolean equals(Object o) { if ( this == o ) { return true; } if ( !( o instanceof SimpleEntity ) ) { return false; } SimpleEntity that = (SimpleEntity) o; if ( id != null ? !id.equals( that.id ) : that.id != null ) { return false; } if ( simpleProperty != null ? !simpleProperty.equals( that.simpleProperty ) : that.simpleProperty != null ) { return false; } return true; } @Override public int hashCode() { int result = id != null ? id.hashCode() : 0; result = 31 * result + ( simpleProperty != null ? simpleProperty.hashCode() : 0 ); return result; } @Override public String toString() { return "SimpleEntity{" + "id=" + id + ", simpleProperty='" + simpleProperty + '\'' + '}'; } public AdvancedEntity getParent() { return parent; } public void setParent(AdvancedEntity parent) { this.parent = parent; } }