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

Packages that use EntityNotFoundException
biz.janux.geography The biz.janux.geography package aims to support the handling and storing of Postal Addresses in the context of managing contact methods for Person and Organizations; in the future, it may be extended to provide functionality for searching by geographic coordinates; the functionality of this package is exposed via the GeographyService Service Facade. 
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.security The org.janux.bus.security package, soon to be renamed the org.janux.authorization package, contains interfaces that define a very flexible Permission-Based scheme for doing Authorization within an application; this scheme makes it possible to define whatever permissions suit a specific domain, and aggregate them into existing or new roles without having to make code changes; the key interfaces of this package are PermissionsCapable, Account, Role, and PermissionContext
 

Uses of EntityNotFoundException in biz.janux.geography
 

Methods in biz.janux.geography that throw EntityNotFoundException
 City CityDao.load(Integer id)
          Deprecated. loads a City object from persistence using its id
 StateProvince StateProvinceDao.load(Integer id)
          Deprecated. load a StateProvince object from persistence using its id
 Country CountryDao.load(Integer id)
          Deprecated. loads a Country object from persistence using its id
 PostalAddress PostalAddressDao.load(Integer id)
          Deprecated. Loads a PostalAddress object from persistence using its id
 Country GeographyService.loadCountry(Integer id)
          loads a Country object from persistence using its id
 

Uses of EntityNotFoundException in biz.janux.people
 

Methods in biz.janux.people that throw EntityNotFoundException
 Organization OrganizationDao.load(Integer id)
          Deprecated. loads a Organization object from persistence using its id; we include this for completeness, but we anticipate that most hotels will be loaded via a unique business code that is assigned to the hotel at the time that its record is first created in the database
 Organization OrganizationDaoGeneric.loadByCode(String code)
          Deep loads an Organization object, or throws exception if Organization with that code is not found
 Organization OrganizationDao.loadByCode(String code)
          Deprecated. Deep loads an Organization object, or throws exception if Organization with that code is not found
 

Uses of EntityNotFoundException in org.janux.bus.security
 

Methods in org.janux.bus.security that throw EntityNotFoundException
 Account AccountService.loadAccountByName(String name)
          loads an Account object, or throws exception if Account with that name is not found
 Role RoleDao.loadByName(String name)
          Deprecated. loads an Role object, or throws exception if Role with that name is not found
 PermissionContext PermissionContextDao.loadByName(String name)
          Deprecated. loads an PermissionContext object, or throws exception if PermissionContext with that name is not found
 Account AccountDao.loadByName(String name)
          Deprecated. loads an Account object, or throws exception if Account with that name is not found
 Account AccountDaoGeneric.loadByName(String name)
          loads an Account object, or throws exception if Account with that name is not found
 Role RoleDaoGeneric.loadByName(String name)
          loads an Role object, or throws exception if Role with that name is not found
 PermissionContext PermissionContextDaoGeneric.loadByName(String name)
          loads an PermissionContext object, or throws exception if PermissionContext with that name is not found
 Role AccountService.loadRoleByName(String name)
          loads an Role object, or throws exception if Role with that name is not found
 



Copyright © 2005-2013 Janux. All Rights Reserved.