blob: 34d2f3120248f2f7b16d050868f7ef51a6d63696 [file] [log] [blame]
/*
* Copyright (c) 2011, 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:
// 03/08/2010-2.1 Guy Pelletier
// - 303632: Add attribute-type for mapping attributes to EclipseLink-ORM
package org.eclipse.persistence.testing.models.jpa.xml.advanced;
/**
* This class is used to test the extended orm attribute-type settings.
*
* It is mapped as an entity in the following resource file:
*
* resource/eclipselinkorm/eclipselink-xml-extended-model/eclipselink-orm.xml
*
* @author gpelleti
*/
public class Confidant {
// Id mapping
private Object id;
// One to one
private Object loner;
public Object getId() {
return id;
}
public Object getLoner() {
return loner;
}
public void setId(Object id) {
this.id = id;
}
public void setLoner(Object loner) {
this.loner = loner;
}
}