List of usage examples for org.hibernate.usertype UserCollectionType interface-usage
From source file com.corvid.json.hibernate.usertype.JsonListUserType.java
/** * @author Marvin H Froeder */ public class JsonListUserType extends JsonUserType implements UserCollectionType { @Override
From source file com.klistret.cmdb.utility.hibernate.LazyCollectionType.java
/**
* Returns an extended persistent collection that disables persistence. This
* class is jacked into the XML configuration for Elements.
*
* @author Matthew Young
*
From source file com.marvinformatics.hibernate.json.JsonListUserType.java
/** * @author Marvin H Froeder */ public class JsonListUserType extends JsonUserType implements UserCollectionType { @Override
From source file com.redhat.rhn.common.hibernate.ForceRecreationListType.java
/**
* This is special user collection type that should be used when
* one wants to force the recreation of a list
* on a Many-Many mapping table. The example case where
* we are using this
*
From source file com.xpn.xwiki.internal.objects.ListPropertyCollectionType.java
/**
* Helper class for hibernate to wrap a persistent collection around a NotifyList.
*
* @since 4.3
* @version $Id: 16363dd70f1f5852c80599b2c4255896861c4b4a $
*/
From source file org.babyfish.hibernate.collection.type.AbstractMACollectionType.java
/** * @author Tao Chen */ public abstract class AbstractMACollectionType implements UserCollectionType, ParameterizedType { private static final LazyResource<Resource> LAZY_RESOURCE = LazyResource.of(Resource.class);
From source file org.jboss.as.test.compat.jpa.hibernate.transformer.QueueType.java
public class QueueType implements UserCollectionType { @Override public PersistentCollection instantiate(SessionImplementor session, CollectionPersister persister) throws HibernateException { return new PersistentQueue(session);