Name

URI — Uniform Resource Identifier in HTTP exchange

Description

Represents a Uniform Resource Identifier (URI) reference in an exchange object model. URI properties are read-only.

Properties

"scheme": string

The scheme component of the URI, or null if the scheme is undefined.

"schemeSpecificPart": string

The decoded scheme-specific part of the URI, never null.

"authority": string

The decoded authority component of the URI, or null if the authority is undefined.

"userInfo": string

The decoded user-information component of the URI, or null if the user information is undefined.

"host": string

The host component of the URI, or null if the host is undefined.

"port": number

The port component of the URI, or null if the port is undefined.

"path": string

The decoded path component of the URI, or null if the path is undefined.

"query": string

The decoded query component of the URI, or null if the query is undefined.

"fragment": string

The decoded fragment component of the URI, or null if the fragment is undefined.

Javadoc

java.net.URI