abstract
void
|
addCookieToResponse(GenericCookie cookie)
This method associates a platform-independent Cookie with a response.
|
abstract
Object
|
getApplicationAttribute(String name)
This method returns the value of an Application Attribute.
|
abstract
String
|
getApplicationPath()
This method returns the full application path of the servlet
|
abstract
int
|
getCodePage()
Returns an integer that represents the character formatting codepage.
|
abstract
GenericCookie
|
getCookie(String cookieName)
This method retrieves a platform-independent Cookie with a specific name.
|
abstract
GenericCookie
|
getCookie(String cookieName, ContainerServicesNamespace namespace)
This method retrieves a platform-independent Cookie with a specific name.
|
abstract
ContainerStringCollection
|
getCookieStrings(ContainerServicesNamespace namespace)
This method returns the contents of all Cookies as a collection of
sub strings (as name/value pairs).
|
abstract
ContainerStringCollection
|
getCookieStrings()
This method returns the contents of all Cookies as a collection of
sub strings (as name/value pairs).
|
abstract
ContainerStringCollection
|
getFormAndQueryStrings()
This method returns the contents of the Form Data and Query String as a collection of
sub strings (as name/value pairs).
|
abstract
String
|
getHeaderValue(String headerName)
This method returns the value of the requested header
|
abstract
String
|
getMethod()
Return the request's method is post or get
|
abstract
OutputStream
|
getOutputStream()
|
abstract
PostedFile
|
getPostedFile(String name)
Provides a way to access individual files that have been uploaded by a client.
|
abstract
String
|
getQueryString()
This method returns the entire Query String.
|
abstract
String
|
getRemoteAddress()
This method returns the client IP address
|
abstract
Object
|
getRequestAttribute(String name)
This method returns the value of a Request Attribute.
|
abstract
String
|
getRequestServerName()
This method returns the Web Server Name from the request object
|
abstract
ContainerStringCollection
|
getServerVariables()
Returns a collection of server variables.
|
abstract
Object
|
getSessionAttribute(String name, ContainerServicesNamespace namespace)
This method returns the value of a Session Attribute.
|
abstract
Object
|
getSessionAttribute(String name)
This method returns the value of a Session Attribute.
|
abstract
String
|
getSessionID()
Returns HTTP session ID
|
abstract
int
|
getSessionMaxIdleTime()
Returns the maximum time interval, in seconds, that the container will keep this session open between client accesses.
|
abstract
ContainerStringCollection
|
getSessionStrings()
This method returns the contents of the Session Variables as a collection of
sub strings (as name/value pairs).
|
abstract
ContainerStringCollection
|
getSessionStrings(ContainerServicesNamespace namespace)
This method returns the contents of the Session Variables as a collection of
sub strings (as name/value pairs) from the namespace specified.
|
abstract
int
|
getStatusCode()
Returns the HTTP Status code specified for this response.
|
abstract
boolean
|
hasOutputStream()
|
abstract
void
|
invalidateHttpSession()
If the security preference is selected, invalidate and create new http session in jsp part
set a flag to show whether a new session need to be created in asp part
|
abstract
boolean
|
isJavaURLSessionSupported()
Indicates if the instance of this container services supports cookieless environments
|
abstract
boolean
|
isRequestSecure()
Returns a boolean indicating whether this request was made using a secure channel, such as HTTPS
|
abstract
boolean
|
isSessionlessRequest()
Does the request has a pre-established session id.
|
abstract
GenericCookie
|
newCookie(String cookieName, String cookieValue)
This method creates a new platform-independent Cookie.
|
abstract
GenericCookie
|
newCookie(String cookieName, String cookieValue, ContainerServicesNamespace namespace)
This method creates a new platform-independent Cookie.
|
abstract
ParameterBuilder
|
newHiddenInputParameterBuilder()
Create a new instance of a ParameterBuilder that is suited for building hidden inputs.
|
abstract
NamespaceEncoder
|
newNamespaceEncoder()
Create a new instance of a NamespaceEncoder that can provide global namespace support.
|
abstract
ParameterBuilder
|
newURIParameterBuilder()
Create a new instance of a ParameterBuilder that is suited for building URIs.
|
abstract
void
|
sendBinaryContent(MarkupOutput mo)
Outputs binary content of the MarkupOutput
|
abstract
boolean
|
sendError(int sc)
Sends an error response to the client using the specified status code.
|
abstract
boolean
|
sendError(int sc, String msg)
Sends an error response to the client using the specified status code.
|
abstract
void
|
setApplicationAttribute(String name, Object value)
This method sets the value of a Application Attribute.
|
abstract
void
|
setCodePage(int code)
Sets the code page, an integer representing the character formatting.
|
abstract
void
|
setContentType(String type)
Stes HTTP response content type
|
abstract
void
|
setHeaderValue(String name, String value)
Sets HTTP response header
|
abstract
void
|
setJavaURLSessionSupported(boolean value)
Sets if the instance of this container services supports cookieless environments
|
abstract
void
|
setRequestAttribute(String name, Object value)
This method sets the value of a Request Attribute.
|
abstract
void
|
setSessionAttribute(String name, Object value)
This method sets the value of a Session Attribute.
|
abstract
void
|
setSessionAttribute(String name, Object value, ContainerServicesNamespace namespace)
This method sets the value of a Session Attribute in the given namespace.
|
abstract
void
|
setStatusCode(int statusCode)
Sets the HTTP Status code specified for this response.
|