Skip to content

http/request

Documentation

Overview

Classes

Request

isValid()

Determines whether the current thread is handling a valid HTTP request.

ts
static isValid(): boolean;

Returns

  • Type: boolean
  • Description: `true` if called in a valid HTTP request context, otherwise `false`.

getMethod()

Returns the HTTP method (GET, POST, PUT, DELETE, etc.).

ts
static getMethod(): string;

Returns

  • Type: string
  • Description:

getRemoteUser()

Returns the authenticated remote user name if available.

ts
static getRemoteUser(): string;

Returns

  • Type: string
  • Description:

getPathInfo()

Returns the portion of the request path following the servlet path.

ts
static getPathInfo(): string;

Returns

  • Type: string
  • Description:

getPathTranslated()

Returns the translated file system path for the request.

ts
static getPathTranslated(): string;

Returns

  • Type: string
  • Description:

getHeader()

Returns the value of a specific HTTP header.

ts
static getHeader(name: string): string;
ParameterTypeDescription
namestringHeader name to retrieve.

Returns

  • Type: string
  • Description: The header value or `undefined` if not found.

isUserInRole()

Checks whether the remote user has the given role.

ts
static isUserInRole(role: string): boolean;
ParameterTypeDescription
rolestringThe role name to check.

Returns

  • Type: boolean
  • Description:

getAttribute()

Returns a request attribute value previously associated with the request.

ts
static getAttribute(name: string): string;
ParameterTypeDescription
namestringThe attribute name.

Returns

  • Type: string
  • Description: A string value or `undefined`.

getAuthType()

Returns the authentication type if known (BASIC, CLIENT_CERT, etc.).

ts
static getAuthType(): string;

Returns

  • Type: string
  • Description:

getCookies()

Returns all cookies sent with the request.

ts
static getCookies(): void;

Returns

  • Type: void
  • Description: An array of Cookie objects.

getAttributeNames()

Returns all available request attribute names.

ts
static getAttributeNames(): void;

Returns

  • Type: void
  • Description:

getCharacterEncoding()

Returns the character encoding used in the request body.

ts
static getCharacterEncoding(): string;

Returns

  • Type: string
  • Description:

getContentLength()

Returns the size of the request body in bytes, if known.

ts
static getContentLength(): number;

Returns

  • Type: number
  • Description:

getHeaders()

Returns all values of a specific header.

ts
static getHeaders(name: string): void;
ParameterTypeDescription
namestringHeader name to retrieve.

Returns

  • Type: void
  • Description:

getContentType()

Returns the MIME content type of the request body.

ts
static getContentType(): string;

Returns

  • Type: string
  • Description:

getBytes()

Returns the raw request body as a byte array.

ts
static getBytes(): void;

Returns

  • Type: void
  • Description:

getText()

Returns the request body as text. This is computed once and cached.

ts
static getText(): string;

Returns

  • Type: string
  • Description:

json()

Returns the request body parsed as JSON if valid.

ts
static json(): void;

Returns

  • Type: void
  • Description: A JSON object or `undefined` if parsing fails.

getJSON()

Same as json(); explicit form.

ts
static getJSON(): void;

Returns

  • Type: void
  • Description:

getParameter()

Returns a request parameter value.

ts
static getParameter(name: string): string;
ParameterTypeDescription
namestring

Returns

  • Type: string
  • Description:

getParameters()

Returns a map of request parameters to arrays of values.

ts
static getParameters(): void;

Returns

  • Type: void
  • Description:

getResourcePath()

Returns the allocated request resource path.

ts
static getResourcePath(): string;

Returns

  • Type: string
  • Description:

getHeaderNames()

Returns all header names.

ts
static getHeaderNames(): void;

Returns

  • Type: void
  • Description:

getParameterNames()

Returns all parameter names.

ts
static getParameterNames(): void;

Returns

  • Type: void
  • Description:

getParameterValues()

Returns all values for a given parameter name.

ts
static getParameterValues(name: string): void;
ParameterTypeDescription
namestring

Returns

  • Type: void
  • Description:

getProtocol()

Returns the HTTP protocol version.

ts
static getProtocol(): string;

Returns

  • Type: string
  • Description:

getScheme()

Returns the transport scheme (e.g., http, https).

ts
static getScheme(): string;

Returns

  • Type: string
  • Description:

getContextPath()

Returns the context path of the request.

ts
static getContextPath(): string;

Returns

  • Type: string
  • Description:

getServerName()

Returns the server host name.

ts
static getServerName(): string;

Returns

  • Type: string
  • Description:

getServerPort()

Returns the server port number.

ts
static getServerPort(): number;

Returns

  • Type: number
  • Description:

getQueryString()

Returns the full raw query string.

ts
static getQueryString(): string;

Returns

  • Type: string
  • Description:

getQueryParametersMap()

Parses the query string and returns a map of parameter keys to values. If the same key appears multiple times, values are collected into arrays.

ts
static getQueryParametersMap(): void;

Returns

  • Type: void
  • Description:

getRemoteAddress()

Returns the remote client IP address.

ts
static getRemoteAddress(): string;

Returns

  • Type: string
  • Description:

getRemoteHost()

Returns the remote client host name.

ts
static getRemoteHost(): string;

Returns

  • Type: string
  • Description:

setAttribute()

Assigns a new attribute to the request.

ts
static setAttribute(name: string, value: string): void;
ParameterTypeDescription
namestring
valuestring

Returns

  • Type: void
  • Description:

removeAttribute()

Removes an attribute from the request.

ts
static removeAttribute(name: string): void;
ParameterTypeDescription
namestring

Returns

  • Type: void
  • Description:

getLocale()

Returns the client locale preferences.

ts
static getLocale(): any;

Returns

  • Type: any
  • Description:

getRequestURI()

Returns the full request URI.

ts
static getRequestURI(): string;

Returns

  • Type: string
  • Description:

isSecure()

Returns `true` if the request was made over HTTPS.

ts
static isSecure(): boolean;

Returns

  • Type: boolean
  • Description:

getRequestURL()

Returns the full request URL including protocol and host.

ts
static getRequestURL(): string;

Returns

  • Type: string
  • Description:

getServicePath()

Returns the internal service path for routing.

ts
static getServicePath(): string;

Returns

  • Type: string
  • Description:

getRemotePort()

Returns the remote client port number.

ts
static getRemotePort(): number;

Returns

  • Type: number
  • Description:

getLocalName()

Returns the local network host name.

ts
static getLocalName(): string;

Returns

  • Type: string
  • Description:

getLocalAddress()

Returns the local IP address.

ts
static getLocalAddress(): string;

Returns

  • Type: string
  • Description:

getLocalPort()

Returns the server local port number handling the request.

ts
static getLocalPort(): number;

Returns

  • Type: number
  • Description:

getInputStream()

Returns the request body as a binary input stream.

Useful for processing binary uploads.

ts
static getInputStream(): InputStream;

Returns

  • Type: InputStream
  • Description: