Class VertxHttpRequest
java.lang.Object
org.jboss.resteasy.plugins.server.BaseHttpRequest
org.jboss.resteasy.plugins.server.vertx.VertxHttpRequest
- All Implemented Interfaces:
- HttpRequest
@Deprecated(forRemoval=true,
            since="6.2.13.Final")
public class VertxHttpRequest
extends BaseHttpRequest
Deprecated, for removal: This API element is subject to removal in a future version.
use new dependencies
Abstraction for an inbound http request on the server, or a response from a server to a client
 
We have this abstraction so that we can reuse marshalling objects in a client framework and serverside framework
- Version:
- $Revision: 1 $
- Author:
- Bill Burke, Norman Maurer, Kristoffer Sjogren
- 
Field SummaryFieldsModifier and TypeFieldDescriptionDeprecated, for removal: This API element is subject to removal in a future version.protected SynchronousDispatcherDeprecated, for removal: This API element is subject to removal in a future version.protected ResteasyHttpHeadersDeprecated, for removal: This API element is subject to removal in a future version.protected StringDeprecated, for removal: This API element is subject to removal in a future version.protected InputStreamDeprecated, for removal: This API element is subject to removal in a future version.protected VertxHttpResponseDeprecated, for removal: This API element is subject to removal in a future version.Fields inherited from class org.jboss.resteasy.plugins.server.BaseHttpRequestdecodedFormParameters, formParameters, uri
- 
Constructor SummaryConstructorsConstructorDescriptionVertxHttpRequest(io.vertx.core.Context context, io.vertx.core.http.HttpServerRequest request, ResteasyUriInfo uri, SynchronousDispatcher dispatcher, VertxHttpResponse response, boolean is100ContinueExpected) Deprecated, for removal: This API element is subject to removal in a future version.
- 
Method SummaryModifier and TypeMethodDescriptionvoidDeprecated, for removal: This API element is subject to removal in a future version.Deprecated, for removal: This API element is subject to removal in a future version.getAttribute(String attribute) Deprecated, for removal: This API element is subject to removal in a future version.Map of contextual data.Deprecated, for removal: This API element is subject to removal in a future version.jakarta.ws.rs.core.HttpHeadersDeprecated, for removal: This API element is subject to removal in a future version.Deprecated, for removal: This API element is subject to removal in a future version.Deprecated, for removal: This API element is subject to removal in a future version.Deprecated, for removal: This API element is subject to removal in a future version.Deprecated, for removal: This API element is subject to removal in a future version.Returns the Internet Protocol (IP) address of the client or last proxy that sent the request.Deprecated, for removal: This API element is subject to removal in a future version.Returns the fully qualified name of the client or the last proxy that sent the request.Deprecated, for removal: This API element is subject to removal in a future version.booleanDeprecated, for removal: This API element is subject to removal in a future version.booleanDeprecated, for removal: This API element is subject to removal in a future version.voidremoveAttribute(String name) Deprecated, for removal: This API element is subject to removal in a future version.voidsetAttribute(String name, Object value) Deprecated, for removal: This API element is subject to removal in a future version.voidsetHttpMethod(String method) Deprecated, for removal: This API element is subject to removal in a future version.voidsetInputStream(InputStream stream) Deprecated, for removal: This API element is subject to removal in a future version.If you are using a servlet container, this will *NOT* override the HttpServletRequest.getInputStream().booleanDeprecated, for removal: This API element is subject to removal in a future version.Methods inherited from class org.jboss.resteasy.plugins.server.BaseHttpRequestformParametersRead, getDecodedFormParameters, getFormParameters, getUri, isInitial, setRequestUri, setRequestUriMethods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.jboss.resteasy.spi.HttpRequestgetFormEntityPart, getFormEntityParts
- 
Field Details- 
httpHeadersDeprecated, for removal: This API element is subject to removal in a future version.
- 
dispatcherDeprecated, for removal: This API element is subject to removal in a future version.
- 
httpMethodDeprecated, for removal: This API element is subject to removal in a future version.
- 
inputStreamDeprecated, for removal: This API element is subject to removal in a future version.
- 
attributesDeprecated, for removal: This API element is subject to removal in a future version.
- 
responseDeprecated, for removal: This API element is subject to removal in a future version.
 
- 
- 
Constructor Details- 
VertxHttpRequestpublic VertxHttpRequest(io.vertx.core.Context context, io.vertx.core.http.HttpServerRequest request, ResteasyUriInfo uri, SynchronousDispatcher dispatcher, VertxHttpResponse response, boolean is100ContinueExpected) Deprecated, for removal: This API element is subject to removal in a future version.
 
- 
- 
Method Details- 
getMutableHeadersDeprecated, for removal: This API element is subject to removal in a future version.
- 
setHttpMethodDeprecated, for removal: This API element is subject to removal in a future version.
- 
getAttributeNamesDeprecated, for removal: This API element is subject to removal in a future version.
- 
getAsyncContextDeprecated, for removal: This API element is subject to removal in a future version.
- 
isFlushedpublic boolean isFlushed()Deprecated, for removal: This API element is subject to removal in a future version.
- 
getAttributeDeprecated, for removal: This API element is subject to removal in a future version.Description copied from interface:HttpRequestMap of contextual data. Similar to HttpServletRequest attributes- Parameters:
- attribute- attribute name
- Returns:
- attribute
 
- 
setAttributeDeprecated, for removal: This API element is subject to removal in a future version.
- 
removeAttributeDeprecated, for removal: This API element is subject to removal in a future version.
- 
getHttpHeaderspublic jakarta.ws.rs.core.HttpHeaders getHttpHeaders()Deprecated, for removal: This API element is subject to removal in a future version.
- 
getInputStreamDeprecated, for removal: This API element is subject to removal in a future version.
- 
setInputStreamDeprecated, for removal: This API element is subject to removal in a future version.Description copied from interface:HttpRequestIf you are using a servlet container, this will *NOT* override the HttpServletRequest.getInputStream(). It will only override it for the resteasy HttpRequest- Parameters:
- stream- input stream
 
- 
getHttpMethodDeprecated, for removal: This API element is subject to removal in a future version.
- 
getResponseDeprecated, for removal: This API element is subject to removal in a future version.
- 
is100ContinueExpectedpublic boolean is100ContinueExpected()Deprecated, for removal: This API element is subject to removal in a future version.
- 
forwardDeprecated, for removal: This API element is subject to removal in a future version.
- 
wasForwardedpublic boolean wasForwarded()Deprecated, for removal: This API element is subject to removal in a future version.
- 
getRemoteHostDeprecated, for removal: This API element is subject to removal in a future version.Description copied from interface:HttpRequestReturns the fully qualified name of the client or the last proxy that sent the request. If the engine cannot or chooses not to resolve the hostname (to improve performance), this method returns the dotted-string form of the IP address.- Returns:
- a Stringcontaining the fully qualified name of the client
 
- 
getRemoteAddressDeprecated, for removal: This API element is subject to removal in a future version.Description copied from interface:HttpRequestReturns the Internet Protocol (IP) address of the client or last proxy that sent the request.- Returns:
- a Stringcontaining the IP address of the client that sent the request
 
 
-