Uses of Class
org.janux.bus.persistence.DataAccessException

Packages that use DataAccessException
biz.janux.people The biz.janux.people package represents Persons and Organizations using the key concept of a Party, which makes it possible to treat Person and Organizations interchangeably in the context of a contract, a business relationship or other relationships that may be entered between people and organization. 
org.janux.bus.persistence The org.janux.bus.persistence package is an infrastructure package that contains the key Persistent interface that represents common fields that are defined across persistent entities; this package also contains abstract interfaces for various flavors of Data Access Objects. 
 

Uses of DataAccessException in biz.janux.people
 

Methods in biz.janux.people that throw DataAccessException
 Person PersonDao.load(Integer id)
          Deprecated. loads a Person object from persistence using its id
 Party PartyDao.load(Integer id)
          Deprecated. loads a Party object from persistence using its id
 

Uses of DataAccessException in org.janux.bus.persistence
 

Methods in org.janux.bus.persistence that throw DataAccessException
 void GenericDaoWrite.attachClean(T persistentObject)
          Reattach an object with the current session.
 void DataAccessObject.delete(Object persistentObject)
          Deprecated. deletes an object from persistent storage
 void GenericDaoWrite.delete(T persistentObject)
          deletes an object from persistent storage
 void GenericDaoWrite.evict(T persistentObject)
           
 T GenericDaoReadOnly.load(ID id)
          TODO loads an object from persistence using its id
 T GenericDaoReadOnlyWithFacets.load(ID id, Set<F> facetSet)
          Loads an entity and initializes only the facets passed in the facet Set passed.
 T GenericDaoWrite.merge(T persistentObject)
          Copied from the Hibernate docs: Copy the state of the given object onto the persistent object with the same identifier.
 void DataAccessObject.refresh(Object persistentObject)
          Deprecated. Retrieves an object from persistent storage and refreshes its state in memory
 void GenericDaoWrite.refresh(T persistentObject)
          Retrieves an object from persistent storage and refreshes its state in memory
 Serializable DataAccessObject.save(Object persistentObject)
          Deprecated. Saves an object into persistent storage
 T GenericDaoWrite.save(T persistentObject)
          Saves an object into persistent storage
 void DataAccessObject.saveOrUpdate(Object persistentObject)
          Deprecated. Used when it is desireable to save objects, whether or not they have been saved before or not; this method will first check whether the object already exists in storage, and will than call Save or Update, accordingly
 T GenericDaoWrite.saveOrUpdate(T persistentObject)
          Used when it is desireable to save objects, whether or not they have been saved before or not; this method will first check whether the object already exists in storage, and will than call Save or Update, accordingly
 void DataAccessObject.update(Object persistentObject)
          Deprecated. Updates an already existing object, throws an exception if the object has not yet been saved
 T GenericDaoWrite.update(T persistentObject)
          Updates an already existing object, throws an exception if the object has not yet been saved
 



Copyright © 2005-2013 Janux. All Rights Reserved.