blob: 21c81673809a3bcf50dd3f57850adfeef7aa4de8 [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.onetoone.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 id: " + this.getId()+ " " + this.getName() + " " + this.getType();
}
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())) &&
(((this.getLeader()==null) && (projectObject.getLeader()==null)) || (this.getLeader().equals(projectObject.getLeader()))) &&
(this.getType().equals(projectObject.getType())) )
return true;
return false;
}
}