blob: 48b3acce200bda0ec1c2f1bc1ba20f12b950a904 [file] [log] [blame]
/*
* Copyright (c) 2015, 2020 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 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:
// Marcel Valovy - initial implementation
package org.eclipse.persistence.testing.jaxb.beanvalidation.special;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlRootElement;
/**
* Constrained externally through validation.xml.
*/
@XmlRootElement
public class ExternallyConstrainedEmployee {
@XmlAttribute
private Integer id;
@XmlAttribute
private Integer age;
public ExternallyConstrainedEmployee(){
}
public ExternallyConstrainedEmployee withId(Integer id){
this.id = id;
return this;
}
public ExternallyConstrainedEmployee withAge(Integer age){
this.age = age;
return this;
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
ExternallyConstrainedEmployee that = (ExternallyConstrainedEmployee) o;
if (age != null ? !age.equals(that.age) : that.age != null) return false;
if (id != null ? !id.equals(that.id) : that.id != null) return false;
return true;
}
@Override
public int hashCode() {
int result = id != null ? id.hashCode() : 0;
result = 31 * result + (age != null ? age.hashCode() : 0);
return result;
}
}