blob: 64cfd7dea48a5b39001d0c21b5e66b5bc9dedb29 [file] [log] [blame]
/*
* Copyright (c) 2010, 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:
// Gordon Yorke - initial creation of this test
package org.eclipse.persistence.testing.tests.unitofwork;
import org.eclipse.persistence.config.CacheIsolationType;
import org.eclipse.persistence.descriptors.ClassDescriptor;
import org.eclipse.persistence.testing.models.employee.domain.Employee;
public class ProtectedUnitOfWorkTestModel extends UnitOfWorkClientSessionTestModel {
protected boolean hasIsolatedClasses = false;
@Override
public void reset() {
getSession().getProject().setHasIsolatedClasses(this.hasIsolatedClasses);
ClassDescriptor descriptor = getSession().getDescriptor(Employee.class);
descriptor.setCacheIsolation(CacheIsolationType.SHARED);
descriptor.setUnitOfWorkCacheIsolationLevel(ClassDescriptor.ISOLATE_CACHE_AFTER_TRANSACTION);
super.reset();
}
@Override
public void setup() {
this.hasIsolatedClasses = getSession().getProject().hasIsolatedClasses();
getSession().getProject().setHasIsolatedClasses(true);
ClassDescriptor descriptor = getSession().getDescriptor(Employee.class);
descriptor.setCacheIsolation(CacheIsolationType.PROTECTED);
descriptor.setUnitOfWorkCacheIsolationLevel(ClassDescriptor.ISOLATE_FROM_CLIENT_SESSION);
super.setup();
}
}