Open Source Repository

Home /hibernate/hibernate-3.2.7.ga | Repository Home



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

import java.io.Serializable;
import java.util.Arrays;
import java.util.List;

import org.hibernate.engine.SessionFactoryImplementor;

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

  public Object structure(Object item) {
    CollectionCacheEntry entry = (CollectionCacheEntryitem;
    return Arrays.asListentry.getState() );
  }
  
  public Object destructure(Object item, SessionFactoryImplementor factory) {
    List list = (Listitem;
    return new CollectionCacheEntrylist.toArraynew Serializable[list.size()] ) );
  }

}