Jump to content

Interceptor pattern

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by IngoLütkebohle (talk | contribs) at 13:59, 24 November 2009 (added categories). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

The Interceptor pattern is a software design pattern. It is used when software systems or frameworks want to offer a way to change, or augment, their usual processing cycle. For example, a (simplified) typical processing sequence for a web-server is to receive a URI from the browser, map it to a file on disk, open the file and send its contents to the browser. Any of these steps could be replaced or changed, i.e. by replacing the way URIs are mapped to filenames, or by inserting a new step which processes the files contents.

Key aspects of the pattern are that the change is transparent and used automatically. In essence, the rest of the systems does not have to know something has been added or changed and can keep working as before. To facilitate this, a predefined interface for extension has to be implemented, some kind of dispatching mechanism is required where interceptors are registered (this may be dynamic, at runtime, or static, e.g. through configuration files) and context objects are provided, which allow access to the frameworks internal state[1].

Uses & Context

Typical users of this pattern are web-servers[2] (as mentioned above), object-[3] and message-oriented middleware[4]


References