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

org.hibernate.engine.FetchStrategy Maven / Gradle / Ivy

/*
 * 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.engine;

/**
 * Describes the strategy for fetching an association, which includes both when and how.
 *
 * @author Steve Ebersole
 */
public class FetchStrategy {
	private final FetchTiming timing;
	private final FetchStyle style;

	/**
	 * Constructs a FetchStrategy.
	 *
	 * @param timing The fetch timing (the when)
	 * @param style The fetch style (the how).
	 */
	public FetchStrategy(FetchTiming timing, FetchStyle style) {
		this.timing = timing;
		this.style = style;
	}

	public FetchTiming getTiming() {
		return timing;
	}

	public FetchStyle getStyle() {
		return style;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy