****Presentation Tier****
Decorating Filter/Intercepting Filter
An object that sits between the client and the web components. It pre-processes
a request and post-processes the response.
Front Controller/ Front Component
An object that accepts all the requests from the client and dispatches or routes
them to appropriate handlers. The Front Controller pattern may divide the
above functionality into two different objects: the Front Controller and the Dispatcher.
In that case, the Front Controller accepts all the requests from the client
and does the authentication, and the Dispatcher dispatches or routes them
to the appropriate handlers.
View Helper
A helper object that encapsulates data access logic on behalf of the presentation
components. For example, JavaBeans can be used as View Helper patterns
for JSP pages.
Composite View
A view object that is made up of an aggregate of other view objects. For example,
a JSP page that includes other JSP and HTML pages using the include
directive or the include action is a Composite View pattern.
Service To Worker
A kind of Model-View-Controller with the Controller acting as a Front Controller
but with one important point: here the Dispatcher (which is a part of the Front
Controller) uses View Helpers to a large extent and aids in view management.
Dispatcher View
A kind of Model-View-Controller with the controller acting as a Front
Controller but with one important point: here the Dispatcher (which is a part
of the Front Controller) does not use View Helpers and does very little work in
view management. The view management is handled by the View components
themselves.
****Business Tier****
Business Delegate
An object that resides on the presentation tier and on behalf of other presentation
tier components calls remote methods on the objects in the business tier.
Transfer Object/ Replicate Object
A serializable object for transferring data over the network.
Session Façade/Session EntityFaçade/Distributed Façade
An object that resides in the business tier, acts as an entry point into the business
tier, and manages the workflow of business service objects, such as session
beans, entity beans, and Data Access Objects. The Session Facade itself
is usually implemented as a session bean.
Aggregate Entity
An object (entity bean) that is made up of or is an aggregate of other entity beans.
Transfer Object /Assembler
An object that resides in the business tier and creates Transfer Objects on the
fly as and when required.
Value List Handler/Page-by-PageIterator/Paged List
An object that manages execution of queries, caching, and processing of
results. Usually implemented as a Session Bean, serving a subset of the
fetched result set to the client as and when needed.
Service Locator
An object that performs the task of locating business services on behalf of
other components in the tier. Usually present in the presentation tier, it is used
by Business Delegates to look up business service objects.
****Integration Tier****
Data Access Object
An object that talks to the actual underlying database and provides other application
components. It serves as a clean, simple, and common interface for
accessing the data, and for reducing the dependency of other components on
the details of using the database.
Service Activator
An object that helps in processing of business methods asynchronously.