Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature/base-interface #1

Open
wants to merge 12 commits into
base: master
Choose a base branch
from
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,11 @@ public final class JOPAPersistenceProperties extends PersistenceProperties {
*/
public static final String CHANGE_TRACKING_MODE = "cz.cvut.kbss.jopa.changeTrackingMode";

/**
* Configures transaction mode. (read_only, read_write[default])
*/
public static final String TRANSACTION_MODE = "cz.cvut.kbss.jopa.transactionMode";

private JOPAPersistenceProperties() {
throw new AssertionError();
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@

public abstract class AbstractUnitOfWork extends AbstractSession implements UnitOfWork {

private static final Logger LOG = LoggerFactory.getLogger(AbstractUnitOfWork.class);
protected static final Logger LOG = LoggerFactory.getLogger(AbstractUnitOfWork.class);
final IndirectWrapperHelper indirectWrapperHelper;

// Read-only!!! It is just the keyset of cloneToOriginals
Expand Down
Loading