What pattern is employed for ServletRequest, ServletResponse ?

Hi,I am trying to figure out , what is the pattern employed to define the ServletRequest, ServletResponse, HttpServletRequaest and HttpServletResponse interfaces in the Servlet API. I couldnt find out until now. Any answers will help.ThanksSuresh
[281 byte] By [sureshnatha] at [2007-10-2 16:08:21]
# 1

> Hi,

>

> I am trying to figure out , what is the pattern

> employed to define the ServletRequest,

> ServletResponse, HttpServletRequaest and

> HttpServletResponse interfaces in the Servlet API.

You know, not everything is an instance of some commonly used and uniquely named pattern...

cmccorveya at 2007-7-13 16:49:49 > top of Java-index,Other Topics,Patterns & OO Design...
# 2
It most resembles the Command pattern, whose semantics are defined by HTTP. At least, IMO.- Saish
Saisha at 2007-7-13 16:49:49 > top of Java-index,Other Topics,Patterns & OO Design...
# 3

A servlet is an HTTP Listener that runs in a container.

The GoF only came up with 26 patterns. They didn't claim that they were an exhaustive representation of every problem in computer science.

Sometimes people spend too much time thinking about patterns. Maybe you're one of them.

%

duffymoa at 2007-7-13 16:49:49 > top of Java-index,Other Topics,Patterns & OO Design...