/******************************************************************************* * 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: * Marcel Valovy - initial implementation ******************************************************************************/ package org.eclipse.persistence.testing.jaxb.beanvalidation.special; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlRootElement; /** * Constrained externally through validation.xml. * Obeying the rule: * "Warning * A given entity can only be configured once across all configuration files. The same applies for constraint * definitions for a given constraint annotation. It can only occur in one mapping file. If these rules are violated a * ValidationException is thrown." -> we need multiple classes if we wish to test multiple configuration files. */ @XmlRootElement public class ExternallyConstrainedEmployee2 { @XmlAttribute private Integer id; @XmlAttribute private Integer age; public ExternallyConstrainedEmployee2(){ } public ExternallyConstrainedEmployee2 withId(Integer id){ this.id = id; return this; } public ExternallyConstrainedEmployee2 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; ExternallyConstrainedEmployee2 that = (ExternallyConstrainedEmployee2) 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; } }