/******************************************************************************* * Copyright (c) 1998, 2015 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 v1.0 and Eclipse Distribution License v. 1.0 * which accompanies this distribution. * The Eclipse Public License is available at http://www.eclipse.org/legal/epl-v10.html * and the Eclipse Distribution License is available at * http://www.eclipse.org/org/documents/edl-v10.php. * * Contributors: * Oracle - initial API and implementation from Oracle TopLink ******************************************************************************/ package org.eclipse.persistence.testing.oxm.mappings.onetomany.keyonsource.eis.indirection.map; import java.util.TreeMap; import org.eclipse.persistence.indirection.*; public class Employee { private String firstName; private ValueHolderInterface projects; public Employee() { super(); this.projects = new ValueHolder(new TreeMap()); } public String getFirstName() { return firstName; } public void setFirstName(String newFirstName) { firstName = newFirstName; } public TreeMap getProjects() { return (TreeMap) projects.getValue(); } public Project getProject(String type) { return (Project)(((TreeMap) projects.getValue()).get(type)); } public void setProjects(TreeMap newProjects) { this.projects.setValue(newProjects); } public void addProject(Project project) { ((TreeMap) projects.getValue()).put(project.getType(), project); } public String toString() { String returnString = "Employee: " + this.getFirstName() + " "; if(projects != null) { returnString += "Projects: "; returnString += projects.toString() + " "; } return returnString; } public boolean equals(Object object) { if(!(object instanceof Employee)) return false; Employee employeeObject = (Employee)object; if(this.projects==null && employeeObject.projects !=null) { return false; } if((this.getFirstName().equals(employeeObject.getFirstName())) && ((this.getProjects()==null && employeeObject.getProjects()==null) || (this.getProjects().equals(employeeObject.getProjects())))) return true; return false; } }