blob: 2b7b33bc3267b23a4d0cd35eaf0e2584e24fce53 [file] [log] [blame]
/*
* Copyright (c) 2011, 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:
// dmccann - March 31/2010 - 2.1 - Initial implementation
package org.eclipse.persistence.testing.jaxb.externalizedmetadata.mappings.binarydata;
import java.util.Arrays;
public class MyData {
public byte[] bytes;
public byte[] readOnlyBytes;
public byte[] writeOnlyBytes;
@jakarta.xml.bind.annotation.XmlTransient
public boolean wasGetCalled;
@jakarta.xml.bind.annotation.XmlTransient
public boolean wasSetCalled;
public byte[] getBytes() {
wasGetCalled = true;
return bytes;
}
public void setBytes(byte[] bytes) {
wasSetCalled = true;
this.bytes = bytes;
}
public boolean equals(Object obj) {
MyData mdObj;
try {
mdObj = (MyData) obj;
} catch (ClassCastException cce) {
return false;
}
if (bytes == null) {
if (mdObj.bytes != null) {
return false;
}
} else if (mdObj.bytes == null) {
return false;
}
if (!Arrays.equals(bytes, mdObj.bytes)) {
return false;
}
if (readOnlyBytes == null) {
if (mdObj.readOnlyBytes != null) {
return false;
}
} else if (mdObj.readOnlyBytes == null) {
return false;
}
if (!Arrays.equals(readOnlyBytes, mdObj.readOnlyBytes)) {
return false;
}
if (writeOnlyBytes == null) {
if (mdObj.writeOnlyBytes != null) {
return false;
}
} else if (mdObj.writeOnlyBytes == null) {
return false;
}
if (!Arrays.equals(writeOnlyBytes, mdObj.writeOnlyBytes)) {
return false;
}
return true;
}
}