Is java violating OOPS concept?
According to OOPS concept the subclass will get all the properties of base class...
But in case of servlets, HttpServlet is the subclass of GenericServlet and Generic servlet can be used for all protocols where as HttpServlet is used only for Http. In this case java is violating OOPS concept..What r ur suggetions friends?

