Java Object Strategy
The ValueListHandler can be implemented as an arbitrary Java object. In this case, the ValueListHandler can be used by any client that needs the listing functionality. For applications that do not use enterprise beans, this strategy is useful. For example, simpler applications may be built using servlets, JavaServer Pages (JSP) pages, Business Delegates, and DAOs. In this scenario, the Business Delegates can use a ValueListHandler implemented as a Java object to obtain list of values.
Stateful Session Bean Strategy
When an application uses enterprise beans in the business tier, it may be preferable to implement a session bean that uses the ValueListHandler. In this case, the session bean simply fronts an instance of a ValueListHandler. Thus, the session bean may be implemented as a stateful session bean to hold on to the list handler as its state, and thus may simply act as a facade (see "Session Facade" on page 291) or as a proxy.
As you migh think, Games' data are hardly managed by databases
I saw an example where they accessed the DAO from a SFSB; so:
SFSB->DAO
Does not this also solve the caching?
The sfsb acts like a sort of shopping cart
Why only calculate the additional payment for the segment?
Can't you just calculate the total cost of the itinerary again and then calculate difference. You won't need an alternative flow this way...