blob: 114c6c31d80b4f46a497f640387178c4101e0c25 [file] [log] [blame]
/*
* Copyright (c) 2014, 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:
// Martin Vojtek - 2.6 - Initial contribution
package org.eclipse.persistence.testing.jaxb.externalizedmetadata.xmlid;
import jakarta.xml.bind.annotation.XmlValue;
public class MyID {
@XmlValue
public String representation;
@Override
public String toString() {
return "MyID [representation=" + representation + "]";
}
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + ((representation == null) ? 0 : representation.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;
MyID other = (MyID) obj;
if (representation == null) {
if (other.representation != null)
return false;
} else if (!representation.equals(other.representation))
return false;
return true;
}
}