blob: 14404da6a6dafe75d82429da3fddc93923311f9a [file] [log] [blame]
/*
* Copyright (c) 1998, 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:
// tware - initial implementation
package org.eclipse.persistence.testing.models.collections.map;
public class EntityMapKey {
private int id;
private String data;
public String getData(){
return data;
}
public int getId(){
return id;
}
public void setData(String data){
this.data = data;
}
public void setId(int id){
this.id = id;
}
public boolean equals(Object object){
if (!(object instanceof EntityMapKey)){
return false;
} else {
return ((EntityMapKey)object).getId() == this.id;
}
}
public int hashCode(){
return id;
}
public static org.eclipse.persistence.tools.schemaframework.TableDefinition tableDefinition() {
org.eclipse.persistence.tools.schemaframework.TableDefinition definition = new org.eclipse.persistence.tools.schemaframework.TableDefinition();
definition.setName("ENT_MAP_KEY");
definition.addField("ID", java.lang.Integer.class, 15);
definition.addField("DATA", String.class, 15);
return definition;
}
}