blob: e49d09a3b6d282a088c96e144e589f8a6890b34b [file] [log] [blame]
/*
* Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2020 IBM Corporation. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0,
* or the Eclipse Distribution License v. 1.0 which is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause
*/
// Contributors:
// 01/06/2020 - Will Dazey
// - 347987: Fix Attribute Override for Complex Embeddables
package org.eclipse.persistence.jpa.test.mapping.model;
import java.io.Serializable;
import jakarta.persistence.Column;
import jakarta.persistence.Embeddable;
@Embeddable
public class OverrideNestedEmbeddableIdA implements Serializable{
private static final long serialVersionUID = 1L;
@Column(name = "NESTED_VALUE")
private Integer nestedValue;
public OverrideNestedEmbeddableIdA() { }
public OverrideNestedEmbeddableIdA(Integer nestedValue) {
this.nestedValue = nestedValue;
}
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + ((nestedValue == null) ? 0 : nestedValue.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;
OverrideNestedEmbeddableIdA other = (OverrideNestedEmbeddableIdA) obj;
if (nestedValue == null) {
if (other.nestedValue != null)
return false;
} else if (!nestedValue.equals(other.nestedValue))
return false;
return true;
}
}