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

org.hibernate.cache.entry.UnstructuredCacheEntry Maven / Gradle / Ivy

//$Id: UnstructuredCacheEntry.java 5707 2005-02-13 12:47:01Z oneovthafew $
package org.hibernate.cache.entry;

import org.hibernate.engine.SessionFactoryImplementor;


/**
 * @author Gavin King
 */
public class UnstructuredCacheEntry implements CacheEntryStructure {

	public Object structure(Object item) {
		return item;
	}

	public Object destructure(Object map, SessionFactoryImplementor factory) {
		return map;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy