[ Team LiB ] |
B.1 Business Tier Patterns
Also Known AsEntity Façade GoalEfficiently represent a particular entity within the domain model, aggregating value from multiple sources or objects, in order to reduce complexity and communications overhead. NotesA composite entity aggregates data from a variety of sources into a single object. This is particularly useful in EJB environments, since it prevents a profusion of EJBs throughout the application.
GoalCreate a java object that represents the concepts underlying the application. Participants
InteractionsObjects in the domain model are connected to each other in ways that represent the underlying business relationships. NotesSee Chapter 6. |
[ Team LiB ] |