use of org.eclipse.persistence.testing.models.inheritance.InheritanceSystem in project eclipselink by eclipse-ee4j.
the class OracleSpecificTestModel method addRequiredSystems.
@Override
public void addRequiredSystems() {
if ((getSession().getPlatform().isOracle())) {
addRequiredSystem(new MappingSystem());
addRequiredSystem(new ProxyIndirectionSystem());
addRequiredSystem(new InheritanceSystem());
}
}
use of org.eclipse.persistence.testing.models.inheritance.InheritanceSystem 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.inheritance.InheritanceSystem in project eclipselink by eclipse-ee4j.
the class ReadOnlyTestModel method addRequiredSystems.
@Override
public void addRequiredSystems() {
addRequiredSystem(new ReadOnlySystem());
addRequiredSystem(new InheritanceSystem());
addRequiredSystem(new MappingSystem());
addRequiredSystem(new org.eclipse.persistence.testing.models.aggregate.AggregateSystem());
}
use of org.eclipse.persistence.testing.models.inheritance.InheritanceSystem in project eclipselink by eclipse-ee4j.
the class JPQLTestModel method addRequiredSystems.
@Override
public void addRequiredSystems() {
addRequiredSystem(new JPQLSystem());
addRequiredSystem(new InheritanceSystem());
}
use of org.eclipse.persistence.testing.models.inheritance.InheritanceSystem in project eclipselink by eclipse-ee4j.
the class RemoteModel method addRequiredSystems.
@Override
public void addRequiredSystems() {
addRequiredSystem(new org.eclipse.persistence.testing.models.employee.relational.EmployeeSystem());
addRequiredSystem(new org.eclipse.persistence.testing.models.insurance.InsuranceSystem());
addRequiredSystem(new org.eclipse.persistence.testing.tests.unitofwork.UOWSystem());
addRequiredSystem(new org.eclipse.persistence.testing.models.mapping.MappingSystem());
addRequiredSystem(new org.eclipse.persistence.testing.models.ownership.OwnershipSystem());
addRequiredSystem(new InheritanceSystem());
addRequiredSystem(new IndirectListSystem());
addRequiredSystem(new IndirectMapSystem());
addRequiredSystem(new MasterSlaveSystem());
addRequiredSystem(new ReadOnlySystem());
addRequiredSystem(new org.eclipse.persistence.testing.tests.queries.options.QueryOptionSystem());
addRequiredSystem(new org.eclipse.persistence.testing.tests.queries.report.ReportQuerySystem());
}
Aggregations