All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.hibernate.internal.AbstractBasicQueryContractImpl Maven / Gradle / Ivy

The newest version!
/*
 * Hibernate, Relational Persistence for Idiomatic Java
 *
 * License: GNU Lesser General Public License (LGPL), version 2.1 or later.
 * See the lgpl.txt file in the root directory or .
 */
package org.hibernate.internal;

import org.hibernate.BasicQueryContract;
import org.hibernate.CacheMode;
import org.hibernate.FlushMode;
import org.hibernate.engine.spi.QueryParameters;
import org.hibernate.engine.spi.RowSelection;
import org.hibernate.engine.spi.SessionImplementor;

/**
 * @author Steve Ebersole
 */
public abstract class AbstractBasicQueryContractImpl implements BasicQueryContract {
	private final SessionImplementor session;

	private FlushMode flushMode;
	private CacheMode cacheMode;

	private boolean cacheable;
	private String cacheRegion;
	private boolean readOnly;
	private RowSelection selection = new RowSelection();

	protected AbstractBasicQueryContractImpl(SessionImplementor session) {
		this.session = session;
		this.readOnly = session.getPersistenceContext().isDefaultReadOnly();
	}

	protected SessionImplementor session() {
		return session;
	}

	@Override
	public FlushMode getFlushMode() {
		return flushMode;
	}

	@Override
	public BasicQueryContract setFlushMode(FlushMode flushMode) {
		this.flushMode = flushMode;
		return this;
	}

	@Override
	public CacheMode getCacheMode() {
		return cacheMode;
	}

	@Override
	public BasicQueryContract setCacheMode(CacheMode cacheMode) {
		this.cacheMode = cacheMode;
		return this;
	}

	@Override
	public boolean isCacheable() {
		return cacheable;
	}

	@Override
	public BasicQueryContract setCacheable(boolean cacheable) {
		this.cacheable = cacheable;
		return this;
	}

	@Override
	public String getCacheRegion() {
		return cacheRegion;
	}

	@Override
	public BasicQueryContract setCacheRegion(String cacheRegion) {
		if ( cacheRegion != null ) {
			this.cacheRegion = cacheRegion.trim();
		}
		return this;
	}

	@Override
	public boolean isReadOnly() {
		return readOnly;
	}

	@Override
	public BasicQueryContract setReadOnly(boolean readOnly) {
		this.readOnly = readOnly;
		return this;
	}

	@Override
	public Integer getTimeout() {
		return selection.getTimeout();
	}

	@Override
	public BasicQueryContract setTimeout(int timeout) {
		selection.setTimeout( timeout );
		return this;
	}

	@Override
	public Integer getFetchSize() {
		return selection.getFetchSize();
	}

	@Override
	public BasicQueryContract setFetchSize(int fetchSize) {
		selection.setFetchSize( fetchSize );
		return this;
	}

	public QueryParameters buildQueryParametersObject() {
		QueryParameters qp = new QueryParameters();
		qp.setRowSelection( selection );
		qp.setCacheable( cacheable );
		qp.setCacheRegion( cacheRegion );
		qp.setReadOnly( readOnly );
		return qp;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy