Uses of Interface
org.strutsme.wishlist.persistence.dto.WishDto

Packages that use WishDto
org.strutsme.wishlist.business All business stuff. 
org.strutsme.wishlist.persistence.dto.impl Implementation of all DTOs. 
org.strutsme.wishlist.persistence.facade All persistence facade classes. 
org.strutsme.wishlist.presentation.struts.wish All struts forms and actions for the wish module. 
 

Uses of WishDto in org.strutsme.wishlist.business
 

Methods in org.strutsme.wishlist.business that return WishDto
 WishDto WishlistBusinessFacade.createWish()
          Creates a new wish.
 WishDto WishlistBusinessFacade.getWishById(java.lang.String wishId)
          Returns the wish with this id.
 

Methods in org.strutsme.wishlist.business with parameters of type WishDto
 java.lang.String WishlistBusinessFacade.saveWish(WishDto wish)
          Persists the wish.
 

Uses of WishDto in org.strutsme.wishlist.persistence.dto.impl
 

Classes in org.strutsme.wishlist.persistence.dto.impl that implement WishDto
 class WishDtoImpl
          Implementation of wish.
 

Uses of WishDto in org.strutsme.wishlist.persistence.facade
 

Methods in org.strutsme.wishlist.persistence.facade that return WishDto
 WishDto AbstractWishlistPersistenceFacade.createWish()
          Creates a new wish.
 WishDto WishlistPersistenceFacade.createWish()
          Creates a new wish.
 WishDto AbstractWishlistPersistenceFacade.getWishById(java.lang.String wishId)
          Returns the wish with this id.
 WishDto WishlistPersistenceFacade.getWishById(java.lang.String wishId)
          Returns the wish with this id.
 

Methods in org.strutsme.wishlist.persistence.facade with parameters of type WishDto
 java.lang.String AbstractWishlistPersistenceFacade.saveWish(WishDto wish)
          Saves an wish.
 java.lang.String WishlistPersistenceFacade.saveWish(WishDto wish)
          Saves an wish.
 

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

Methods in org.strutsme.wishlist.presentation.struts.wish that return WishDto
 WishDto WishForm.getWish()
           
 

Methods in org.strutsme.wishlist.presentation.struts.wish with parameters of type WishDto
 void WishForm.setWish(WishDto wish)