whatz the use of this interface

I have found one interface in one pdf .i dont know what actually this interface will do,

plz help me

package javax.servlet;

//

// Approximate Source Imports

//

public abstract interface Servlet

{

//

// Fields

//

//

// Constructors

//

//

// Methods

//

void init(javax.servlet.ServletConfig param1)

{

}

javax.servlet.ServletConfig getServletConfig()

{

}

void service(javax.servlet.ServletRequest param1, javax.servlet.ServletResponse param2)

{

}

java.lang.String getServletInfo()

{

}

void destroy()

{

}

}

Message was edited by:

manchikanti

Message was edited by:

manchikanti

Message was edited by:

manchikanti

[900 byte] By [manchikantia] at [2007-11-27 4:09:37]
# 1
This is an interface. It won't do anything unless you implement it:)RegardsMarek
marecki6000a at 2007-7-12 9:15:04 > top of Java-index,Developer Tools,Debugging and Profiling Tool APIs...
# 2
what is the use of ths interface if we implement it
sareena at 2007-7-12 9:15:04 > top of Java-index,Developer Tools,Debugging and Profiling Tool APIs...