use of org.eclipse.persistence.testing.models.transparentindirection.IndirectListSystem in project eclipselink by eclipse-ee4j.
the class ComplexUpdateAndUnitOfWorkTestModel method addRequiredSystems.
@Override
public void addRequiredSystems() {
addRequiredSystem(new OwnershipSystem());
addRequiredSystem(new IndirectListSystem());
addRequiredSystem(new EmployeeSystem());
addRequiredSystem(new InsuranceSystem());
addRequiredSystem(new org.eclipse.persistence.testing.models.mapping.MappingSystem());
addRequiredSystem(new org.eclipse.persistence.testing.tests.unitofwork.UOWSystem());
addRequiredSystem(new InheritanceSystem());
}
use of org.eclipse.persistence.testing.models.transparentindirection.IndirectListSystem in project eclipselink by eclipse-ee4j.
the class TransparentIndirectionModel method addRequiredSystems.
@Override
public void addRequiredSystems() {
addRequiredSystem(new IndirectListSystem());
addRequiredSystem(new IndirectMapSystem());
addRequiredSystem(new IndirectSetSystem());
addRequiredSystem(new CustomIndirectContainerSystem());
addRequiredSystem(new BidirectionalRelationshipSystem());
}
use of org.eclipse.persistence.testing.models.transparentindirection.IndirectListSystem in project eclipselink by eclipse-ee4j.
the class UnitOfWorkClientSessionTestModel method addRequiredSystems.
@Override
public void addRequiredSystems() {
// H2 has locking issue with multiple connections.
if (getSession().getPlatform().isH2()) {
throw new TestWarningException("H2 has locking issue with multiple connections");
}
addRequiredSystem(new OwnershipSystem());
addRequiredSystem(new IndirectListSystem());
addRequiredSystem(new EmployeeSystem());
addRequiredSystem(new InsuranceSystem());
addRequiredSystem(new MappingSystem());
addRequiredSystem(new UOWSystem());
addRequiredSystem(new InheritanceSystem());
}
Aggregations