/******************************************************************************* * Copyright (c) 2015 Oracle and/or its affiliates. All rights reserved. * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v1.0 and Eclipse Distribution License v. 1.0 * which accompanies this distribution. * The Eclipse Public License is available at http://www.eclipse.org/legal/epl-v10.html * and the Eclipse Distribution License is available at * http://www.eclipse.org/org/documents/edl-v10.php. * * Contributors: * ljungmann - initial implementation ******************************************************************************/ package org.eclipse.persistence.testing.tests.jpa22.metadata; import javax.persistence.Basic; import javax.persistence.Column; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import org.eclipse.samples.LoggableEmployee; @LoggableEmployee public class Employee { private static final long serialVersionUID = 1L; @Id @Basic(optional = false) @Column(name = "ID") @GeneratedValue(strategy = GenerationType.TABLE) private Long id; @Column(name = "name") private String name; @Column(name = "employer") private String employer; public Employee() { } public Employee(Long id) { this.id = id; } public Long getId() { return id; } public void setId(Long id) { this.id = id; } public String getName() { return name; } public void setName(String name) { this.name = name; } public String getEmployer() { return employer; } public void setEmployer(String employer) { this.employer = employer; } @Override public int hashCode() { final int prime = 31; int result = 1; result = prime * result + ((employer == null) ? 0 : employer.hashCode()); result = prime * result + ((id == null) ? 0 : id.hashCode()); 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; Employee other = (Employee) obj; if (employer == null) { if (other.employer != null) return false; } else if (!employer.equals(other.employer)) return false; if (id == null) { if (other.id != null) return false; } else if (!id.equals(other.id)) return false; if (name == null) { if (other.name != null) return false; } else if (!name.equals(other.name)) return false; return true; } }