AttributeList
;
that interface has been replaced by
Attributes
,
which is implemented in the
AttributesImpl
helper class.
DocumentHandler
interface. It has been replaced by the SAX2
DefaultHandler
class.
Attributes
interface, which includes Namespace support.
ContentHandler
interface, which includes Namespace support.
XMLReader
interface, which includes Namespace support.
Enumeration
and will be removed
in a future version of this API.
ServletContext.getRealPath(java.lang.String)
instead.
This method was originally defined to retrieve a servlet
from a ServletContext
. In this version, this method
always returns null
and remains only to preserve
binary compatibility. This method will be permanently removed
in a future version of the Java Servlet API.
In lieu of this method, servlets can share information using the
ServletContext
class and can perform shared business logic
by invoking methods on common non-servlet classes.
This method was originally defined to return an
Enumeration
of all the servlet names known to this context. In this version,
this method always returns an empty Enumeration
and
remains only to preserve binary compatibility. This method will
be permanently removed in a future version of the Java Servlet API.
This method was originally defined to return an Enumeration
of all the servlets known to this servlet context. In this
version, this method always returns an empty enumeration and
remains only to preserve binary compatibility. This method
will be permanently removed in a future version of the Java
Servlet API.
HttpSession.getAttribute(java.lang.String)
.
HttpSession.getAttributeNames()
HttpServletRequest.isRequestedSessionIdFromURL()
instead.
ServletContext.log(String message, Throwable throwable)
instead.
This method was originally defined to write an exception's stack trace and an explanatory error message to the servlet log file.
HttpSession.setAttribute(java.lang.String, java.lang.Object)
HttpSession.removeAttribute(java.lang.String)
setStatus(int)
, to send an error with a description
use sendError(int, String)
.
Sets the status code and message for this response.
UnavailableException.UnavailableException(String, int)
instead.
UnavailableException.UnavailableException(String)
instead.