Uses of Interface
com.vaadin.addon.jpacontainer.EntityProvider

Packages that use EntityProvider
com.vaadin.addon.jpacontainer   
com.vaadin.addon.jpacontainer.provider   
com.vaadin.addon.jpacontainer.provider.jndijta   
com.vaadin.addon.jpacontainer.util   
 

Uses of EntityProvider in com.vaadin.addon.jpacontainer
 

Subinterfaces of EntityProvider in com.vaadin.addon.jpacontainer
 interface BatchableEntityProvider<T>
          An extended version of MutableEntityProvider that can execute several update operations (that is, adding new entities, and updating and removing existing entities) inside a single transaction.
 interface CachingEntityProvider<T>
          Interface to be implemented by all EntityProviders that perform some kind of internal caching.
 interface MutableEntityProvider<T>
          Entity provider that also supports adding, updating and removing entities.
 

Methods in com.vaadin.addon.jpacontainer that return EntityProvider
protected  EntityProvider<T> JPAContainer.doGetEntityProvider()
          Checks that the entity provider is not null and returns it.
 EntityProvider<T> JPAContainer.getEntityProvider()
           
 EntityProvider<T> EntityContainer.getEntityProvider()
          Gets the entity provider that is used for fetching and storing entities.
 EntityProvider<T> EntityProviderChangeEvent.getEntityProvider()
          Gets the entity provider whose contents has been changed.
 

Methods in com.vaadin.addon.jpacontainer with parameters of type EntityProvider
 void LazyLoadingDelegate.setEntityProvider(EntityProvider<?> ep)
          Sets the EntityProvider that this delegate is associated with.
 void JPAContainer.setEntityProvider(EntityProvider<T> entityProvider)
           
 void EntityContainer.setEntityProvider(EntityProvider<T> entityProvider)
          Sets the entity provider to use for fetching and storing entities.
 

Uses of EntityProvider in com.vaadin.addon.jpacontainer.provider
 

Classes in com.vaadin.addon.jpacontainer.provider that implement EntityProvider
 class BatchableLocalEntityProvider<T>
          A very simple implementation of BatchableEntityProvider that simply passes itself to the BatchUpdateCallback.
 class CachingBatchableLocalEntityProvider<T>
          A very simple implementation of BatchableEntityProvider with caching support that simply passes itself to the BatchUpdateCallback.
 class CachingLocalEntityProvider<T>
          En extended version of LocalEntityProvider that also implements the CachingEntityProvider interface.
 class CachingMutableLocalEntityProvider<T>
          En extended version of MutableLocalEntityProvider that also implements the CachingEntityProvider interface.
 class LocalEntityProvider<T>
          A read-only entity provider that works with a local EntityManager.
 class MutableLocalEntityProvider<T>
          Extended version of LocalEntityProvider that provides editing support.
 

Methods in com.vaadin.addon.jpacontainer.provider that return EntityProvider
 EntityProvider<T> BatchUpdatePerformedEvent.getEntityProvider()
           
 

Uses of EntityProvider in com.vaadin.addon.jpacontainer.provider.jndijta
 

Subinterfaces of EntityProvider in com.vaadin.addon.jpacontainer.provider.jndijta
 interface JndiJtaProvider<T>
          A custom type of EntityProvider suitable for JEE6 environment with JTA and server provided JPA context.
 

Classes in com.vaadin.addon.jpacontainer.provider.jndijta that implement EntityProvider
 class CachingBatchableEntityProvider<T>
          An entity provider implementation that uses JTA transactions and JPA context provided by the application server.
 class CachingMutableEntityProvider<T>
          An entity provider implementation that uses JTA transactions and JPA context provided by the application server.
 class EntityProvider<T>
          An entity provider implementation that uses JTA transactions and JPA context provided by the application server.
 class MutableEntityProvider<T>
          An entity provider implementation that uses JTA transactions and JPA context provided by the application server.
 

Uses of EntityProvider in com.vaadin.addon.jpacontainer.util
 

Methods in com.vaadin.addon.jpacontainer.util with parameters of type EntityProvider
 void HibernateLazyLoadingDelegate.setEntityProvider(EntityProvider<?> ep)
           
 



Copyright © 2013 Vaadin Ltd. All rights reserved.