• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • paul wheaton
  • Ron McLeod
  • Jeanne Boyarsky
Sheriffs:
  • Paul Clapham
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
Bartenders:

DispatchAction and LookupDispatchAction

 
Ranch Hand
Posts: 92
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
What is the difference between DispatchAction and LookupDispatchAction.

DispatchAction is used when we want to group a set of methods to a single action.
For example ; add() ,update() and delete() in UserAction class which extends DispatchAction class.

What is the purpose of LookupDispatchAction.
 
Author
Posts: 12617
IntelliJ IDE Ruby
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Perhaps reading the documentation would help:

DispatchAction Javadocs
LookupDispatchAction Javadocs

It's almost always the best, easiest, and fastest way to get a question answered.
 
reply
    Bookmark Topic Watch Topic
  • New Topic