blob: faa2562b3ec228731a6b37e8514c89e2708dc74e [file] [log] [blame]
/*
* Copyright (c) 1998, 2019 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.models.inheritance;
import org.eclipse.persistence.indirection.*;
/**
* Designed to test cyclical relationships with inheritance. Has a cyclical relationship
* with ProjectWorker.
*/
public class BaseProject {
private long id;
private String name;
private ValueHolderInterface<ProjectWorker> teamLeader;
public BaseProject() {
this.name = "";
this.teamLeader = new ValueHolder<>();
}
public long getId() {
return id;
}
public String getName() {
return name;
}
public ProjectWorker getTeamLeader() {
return teamLeader.getValue();
}
public void setName(String name) {
this.name = name;
}
public void setTeamLeader(ProjectWorker teamLeader) {
this.teamLeader.setValue(teamLeader);
}
}