Package | Description |
---|---|
javax.servlet.http |
The javax.servlet.http package contains a number of classes and interfaces
that describe and define the contracts between a servlet class
running under the HTTP protocol and the runtime environment provided
for an instance of such a class by a conforming servlet container.
|
Modifier and Type | Class and Description |
---|---|
static class |
HttpServletRequest.NoOpPushBuilder |
Modifier and Type | Method and Description |
---|---|
PushBuilder |
HttpServletRequest.NoOpPushBuilder.addHeader(String name,
String value) |
PushBuilder |
PushBuilder.addHeader(String name,
String value)
Add a header to be used for the push.
|
PushBuilder |
HttpServletRequest.NoOpPushBuilder.conditional(boolean conditional) |
PushBuilder |
PushBuilder.conditional(boolean conditional)
Set if the request is to be conditional.
|
PushBuilder |
HttpServletRequest.NoOpPushBuilder.etag(String etag) |
PushBuilder |
PushBuilder.etag(String etag)
Set the etag to be used for conditional pushes.
|
default PushBuilder |
HttpServletRequest.getPushBuilder()
Returns a
PushBuilder for issuing server push responses
from the current request. |
PushBuilder |
HttpServletRequest.NoOpPushBuilder.lastModified(String lastModified) |
PushBuilder |
PushBuilder.lastModified(String lastModified)
Set the last modified date to be used for conditional pushes.
|
PushBuilder |
HttpServletRequest.NoOpPushBuilder.method(String method) |
PushBuilder |
PushBuilder.method(String method)
Set the method to be used for the push.
|
PushBuilder |
HttpServletRequest.NoOpPushBuilder.path(String path) |
PushBuilder |
PushBuilder.path(String path)
Set the URI path to be used for the push.
|
PushBuilder |
HttpServletRequest.NoOpPushBuilder.queryString(String queryString) |
PushBuilder |
PushBuilder.queryString(String queryString)
Set the query string to be used for the push.
|
PushBuilder |
HttpServletRequest.NoOpPushBuilder.removeHeader(String name) |
PushBuilder |
PushBuilder.removeHeader(String name)
Remove the named header.
|
PushBuilder |
HttpServletRequest.NoOpPushBuilder.sessionId(String sessionId) |
PushBuilder |
PushBuilder.sessionId(String sessionId)
Set the SessionID to be used for the push.
|
PushBuilder |
HttpServletRequest.NoOpPushBuilder.setHeader(String name,
String value) |
PushBuilder |
PushBuilder.setHeader(String name,
String value)
Set a header to be used for the push.
|
Copyright © 1999-2015, Oracle and/or its affiliates. All Rights Reserved. Use is subject to license terms. Portions Copyright © 1999-2002 The Apache Software Foundation.