Uses of Class
org.strutsme.wishlist.business.BusinessException

Packages that use BusinessException
org.strutsme.wishlist.business All business stuff. 
org.strutsme.wishlist.presentation.struts.login Package for all Struts actions and forms in module "login". 
org.strutsme.wishlist.presentation.struts.wish All struts forms and actions for the wish module. 
 

Uses of BusinessException in org.strutsme.wishlist.business
 

Methods in org.strutsme.wishlist.business that throw BusinessException
 WishDto WishlistBusinessFacade.createWish()
          Creates a new wish.
 void WishlistBusinessFacade.deleteWish(java.lang.String wishId)
          Deletes an wish.
 WishlistPersistenceFacade WishlistBusinessFacade.getPersistenceFacade()
          Getter for persistenceFacade.
 UserDto WishlistBusinessFacade.getUserById(java.lang.String userId)
          Returns a user with this id.
 UserDto WishlistBusinessFacade.getUserByName(java.lang.String userName)
          Returns a user for this username.
 WishDto WishlistBusinessFacade.getWishById(java.lang.String wishId)
          Returns the wish with this id.
 java.util.List WishlistBusinessFacade.getWishes()
          Finds all wishes.
 java.lang.String WishlistBusinessFacade.saveWish(WishDto wish)
          Persists the wish.
 

Uses of BusinessException in org.strutsme.wishlist.presentation.struts.login
 

Methods in org.strutsme.wishlist.presentation.struts.login that throw BusinessException
 org.apache.struts.action.ActionForward LoginAction.execute(org.apache.struts.action.ActionMapping mapping, org.apache.struts.action.ActionForm form, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
           Handles login validation.
 

Uses of BusinessException in org.strutsme.wishlist.presentation.struts.wish
 

Methods in org.strutsme.wishlist.presentation.struts.wish that throw BusinessException
 org.apache.struts.action.ActionForward ListWishesAction.execute(org.apache.struts.action.ActionMapping mapping, org.apache.struts.action.ActionForm form, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
          
 org.apache.struts.action.ActionForward ViewWishAction.execute(org.apache.struts.action.ActionMapping mapping, org.apache.struts.action.ActionForm form, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)