/* * 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.backendtck.associations.collection.types; import javax.persistence.Embeddable; /** * @author Gunnar Morling */ @Embeddable public class Department { private String name; private int headCount; public Department() { } public Department(String name, int headCount) { this.name = name; this.headCount = headCount; } public String getName() { return name; } public void setName(String name) { this.name = name; } public int getHeadCount() { return headCount; } public void setHeadCount(int headCount) { this.headCount = headCount; } @Override public int hashCode() { final int prime = 31; int result = 1; result = prime * result + ( headCount ^ ( headCount >>> 32 ) ); result = prime * result + ( ( name == null ) ? 0 : name.hashCode() ); return result; } @Override public boolean equals(Object obj) { if ( this == obj ) { return true; } if ( obj == null ) { return false; } if ( getClass() != obj.getClass() ) { return false; } Department other = (Department) obj; if ( headCount != other.headCount ) { return false; } if ( name == null ) { if ( other.name != null ) { return false; } } else if ( !name.equals( other.name ) ) { return false; } return true; } }