blob: c84258c3fb3fb5b6041fe5ceae24a01e7c22f165 [file] [log] [blame]
/*
* Copyright (c) 1998, 2021 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:
// 05/05/2009 Andrei Ilitchev
// - JPA 2.0 - OrderedList support.
package org.eclipse.persistence.testing.models.orderedlist;
import java.util.List;
import org.eclipse.persistence.annotations.OrderCorrectionType;
import org.eclipse.persistence.mappings.CollectionMapping;
import org.eclipse.persistence.sessions.DatabaseSession;
import org.eclipse.persistence.testing.framework.TestSystem;
public class EmployeeSystem extends TestSystem {
public static enum ChangeTracking {
DEFERRED,
ATTRIBUTE
}
public static enum JoinFetchOrBatchRead {
NONE,
INNER_JOIN,
OUTER_JOIN,
BATCH_FETCH,
BATCH_IN_FETCH,
BATCH_EXISTS_FETCH;
public String toString() {
if(this == NONE) {
return "";
} else {
return super.toString();
}
}
}
// if true listOrderField is used by all collection mappings.
boolean useListOrderField;
// if true all collection mappings use TransparentIndirection; otherwise collection mappings use no indirection.
boolean useIndirection;
boolean isPrivatelyOwned;
boolean useSecondaryTable;
boolean useVarcharOrder;
ChangeTracking changeTracking;
OrderCorrectionType orderCorrectionType;
boolean shouldOverrideContainerPolicy;
JoinFetchOrBatchRead joinFetchOrBatchRead;
public EmployeeSystem(boolean useListOrderField, boolean useIndirection, boolean isPrivatelyOwned, boolean useSecondaryTable, boolean useVarcharOrder, ChangeTracking changeTracking, OrderCorrectionType orderCorrectionType, boolean shouldOverrideContainerPolicy, JoinFetchOrBatchRead joinFetchOrBatchRead) {
this.useListOrderField = useListOrderField;
this.useIndirection = useIndirection;
this.isPrivatelyOwned = isPrivatelyOwned;
this.useSecondaryTable = useSecondaryTable;
this.useVarcharOrder = useVarcharOrder;
this.changeTracking = changeTracking;
this.orderCorrectionType = orderCorrectionType;
this.shouldOverrideContainerPolicy = shouldOverrideContainerPolicy;
this.joinFetchOrBatchRead = joinFetchOrBatchRead;
this.project = new EmployeeProject(useListOrderField, useIndirection, isPrivatelyOwned, useSecondaryTable, useVarcharOrder, changeTracking, orderCorrectionType, shouldOverrideContainerPolicy, joinFetchOrBatchRead);
}
@Override
public void createTables(DatabaseSession session) {
new EmployeeTableCreator().replaceTables(session);
}
@Override
public void addDescriptors(DatabaseSession session) {
if(shouldOverrideContainerPolicy) {
List<CollectionMapping> listOrderMappings = ((EmployeeProject)this.project).getListOrderMappings();
for(int i=0; i < listOrderMappings.size(); i++) {
CollectionMapping mapping = listOrderMappings.get(i);
mapping.setContainerPolicy(new NullsLastOrderedListContainerPolicy(mapping.getContainerPolicy().getContainerClass()));
}
}
session.addDescriptors(project);
}
public static List<CollectionMapping> getListOrderMappings(DatabaseSession session) {
return EmployeeProject.getListOrderMappings(session);
}
}