Java Helper Class and Session Facade

What is helper class? What is session facade?

Questions by gopalraop

Showing Answers 1 - 3 of 3 Answers

Java Helper class is one that your class under consideration delegates the work to be done to . Example. Consider an n tier application where Struts is the presentation layer . Now generally the Action Classes are not resposible to carry out the business logic of the appplication so they rely on the helper classes to carry out the business functionality .

Session Facade comes into picture in case of some design pattern where we want to hide up a complexity using a higher level layer. It is a higher lever component which contains and centralizes complext interaction between lower level components . Generally it is implemented by use of session beans.

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions