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

org.hibernate.envers.internal.entities.mapper.relation.MiddleComponentData Maven / Gradle / Ivy

There is a newer version: 7.0.0.Beta1
Show 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.envers.internal.entities.mapper.relation;

import org.hibernate.envers.internal.entities.mapper.relation.component.MiddleComponentMapper;

/**
 * A data holder for a middle relation component (which is either the collection element or index):
 * - component mapper used to map the component to and from versions entities
 * - an index, which specifies in which element of the array returned by the query for reading the collection the data
 * of the component is
 *
 * @author Adam Warski (adam at warski dot org)
 */
public final class MiddleComponentData {
	private final MiddleComponentMapper componentMapper;
	private final int componentIndex;

	public MiddleComponentData(MiddleComponentMapper componentMapper, int componentIndex) {
		this.componentMapper = componentMapper;
		this.componentIndex = componentIndex;
	}

	public MiddleComponentMapper getComponentMapper() {
		return componentMapper;
	}

	public int getComponentIndex() {
		return componentIndex;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy