blob: e6092a55f88723593c84f678e0af25857ce4f7db [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:
// Oracle - initial API and implementation from Oracle TopLink
package org.eclipse.persistence.testing.oxm.mappings.onetomany.keyontarget;
public class Project {
private long id;
private String name;
private String type;
private Employee leader;
public Project()
{
this.name = "";
this.type ="";
}
public String getType(){
return type;
}
public long getId()
{
return id;
}
public String getName()
{
return name;
}
public Employee getLeader()
{
return leader;
}
public void setType(String type)
{
this.type = type;
}
public void setName(String name)
{
this.name = name;
}
public void setLeader(Employee leader)
{
this.leader = leader;
}
public void setId(long id)
{
this.id = id;
}
public String toString()
{
return "Project: " + this.hashCode() + " id:"+ this.getId()+" " +this.getName() + " " +this.getType();// + " " + this.getLeader();
}
public boolean equals(Object object)
{
if(!(object instanceof Project))
return false;
Project projectObject = (Project)object;
if( (this.getId() == projectObject.getId()) &&(this.getName().equals(projectObject.getName()))){
if( ((this.getLeader() == null) && projectObject.getLeader() ==null) || (this.getLeader().equals(projectObject.getLeader())) ){
if( (this.getType() == null && projectObject.getType() == null) ||(this.getType().equals(projectObject.getType())) ){
return true;
}
}
}
return false;
}
}