Uses of Class
org.iternine.jeppetto.dao.JeppettoException

Packages that use JeppettoException
org.iternine.jeppetto.dao   
 

Uses of JeppettoException in org.iternine.jeppetto.dao
 

Subclasses of JeppettoException in org.iternine.jeppetto.dao
 class AccessControlException
           
 class NoSuchItemException
           
 class OptimisticLockException
           
 class TooManyItemsException
           
 

Methods in org.iternine.jeppetto.dao that throw JeppettoException
 void GenericDAO.delete(T entity)
          Delete the specified object from the persistent store.
 void GenericDAO.deleteById(ID id)
          Delete an object from the persistent store based on the id.
 void GenericDAO.deleteByIds(ID... ids)
          Delete objects from the persistent store based on the passed in id values.
 void QueryModelDAO.deleteUsingQueryModel(QueryModel queryModel)
          Delete objects of type T that correspond to the QueryModel.
 Iterable<T> GenericDAO.findAll()
          Find all objects of type T.
 T GenericDAO.findById(ID id)
          Find an object T with the specified id.
 Iterable<T> GenericDAO.findByIds(ID... ids)
          Find objects of type T with the specified ids.
 T QueryModelDAO.findUniqueUsingQueryModel(QueryModel queryModel)
          Find an object T that satisfies the QueryModel.
 Iterable<T> QueryModelDAO.findUsingQueryModel(QueryModel queryModel)
          Find objects of type T that correspond to the QueryModel.
 void GenericDAO.flush()
          If the implementation supports lazy writes, manually flush changes to the external database
 Object QueryModelDAO.projectUsingQueryModel(QueryModel queryModel)
          Use the QueryModel to narrow a set of results, then perform the specified projection.
 ReferenceSet<T> QueryModelDAO.referenceUsingQueryModel(QueryModel queryModel)
           
 void GenericDAO.save(T entity)
          Call save to insert a new object into the persistent store or update a preexisting object that has been modified.
 void AccessControlDAO.save(T object, AccessControlContext accessControlContext)
           
 void GenericDAO.updateReferences(ReferenceSet<T> referenceSet, T updateObject)
          Update the objects referenced by the referenceSet with the changes in the updateObject.
 



Copyright © 2012. All Rights Reserved.