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

org.hibernate.collection.internal.StandardBagSemantics 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 http://www.gnu.org/licenses/lgpl-2.1.html
 */
package org.hibernate.collection.internal;

import java.util.Collection;

import org.hibernate.collection.spi.CollectionClassification;
import org.hibernate.collection.spi.PersistentCollection;
import org.hibernate.engine.spi.SharedSessionContractImplementor;
import org.hibernate.metamodel.model.domain.spi.PersistentCollectionDescriptor;

/**
 * CollectionSemantics for bags
 *
 * @author Steve Ebersole
 */
public class StandardBagSemantics extends AbstractBagSemantics> {
	/**
	 * Singleton access
	 */
	public static final StandardBagSemantics INSTANCE = new StandardBagSemantics();

	private StandardBagSemantics() {
	}

	@Override
	public CollectionClassification getCollectionClassification() {
		return CollectionClassification.BAG;
	}

	@Override
	@SuppressWarnings("unchecked")
	public  PersistentCollection instantiateWrapper(
			Object key,
			PersistentCollectionDescriptor, E> collectionDescriptor,
			SharedSessionContractImplementor session) {
		return new PersistentBag( session, collectionDescriptor );
	}

	@Override
	@SuppressWarnings("unchecked")
	public  PersistentCollection wrap(
			Collection rawCollection,
			PersistentCollectionDescriptor, E> collectionDescriptor,
			SharedSessionContractImplementor session) {
		return new PersistentBag( session, collectionDescriptor, rawCollection );
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy