blob: df1dc2b72f5cef96aa1ab524fc0c71cf4a69b6bf [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 1998, 2013 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.models.transparentindirection;
import org.eclipse.persistence.descriptors.RelationalDescriptor;
/**
* configure Order descriptor to use IndirectLists
*/
public class IndirectListProject extends IndirectContainerProject {
public IndirectListProject() {
super();
}
protected void configureContactContainer(org.eclipse.persistence.mappings.DirectCollectionMapping directcollectionmapping) {
directcollectionmapping.useCollectionClass(java.util.Vector.class);
}
protected void configureLineContainer(org.eclipse.persistence.mappings.OneToManyMapping onetomanymapping) {
onetomanymapping.useCollectionClass(java.util.Vector.class);
}
protected void configureSalesRepContainer(org.eclipse.persistence.mappings.ManyToManyMapping manytomanymapping) {
manytomanymapping.useCollectionClass(java.util.Vector.class);
}
protected void modifyOrderDescriptor(RelationalDescriptor descriptor) {
((org.eclipse.persistence.mappings.CollectionMapping)descriptor.getMappingForAttributeName("salesReps")).useTransparentCollection();
((org.eclipse.persistence.mappings.CollectionMapping)descriptor.getMappingForAttributeName("contacts")).useTransparentCollection();
((org.eclipse.persistence.mappings.CollectionMapping)descriptor.getMappingForAttributeName("lines")).useTransparentCollection();
}
protected Class orderClass() {
return org.eclipse.persistence.testing.models.transparentindirection.Order.class;
}
protected Class orderLineClass() {
return org.eclipse.persistence.testing.models.transparentindirection.OrderLine.class;
}
protected Class salesRepClass() {
return org.eclipse.persistence.testing.models.transparentindirection.SalesRep.class;
}
}