Uses of Class
org.forgerock.http.MutableUri
-
Packages that use MutableUri Package Description org.forgerock.http Models and manages elements of the Hypertext Transfer Protocol.org.forgerock.http.header Processes HTTP message header fields.org.forgerock.http.protocol Models and manages elements of the Hypertext Transfer Protocol. -
-
Uses of MutableUri in org.forgerock.http
Methods in org.forgerock.http that return MutableUri Modifier and Type Method Description MutableUri
MutableUri. rebase(URI base)
Changes the base scheme, host and port of this MutableUri to that specified in a base URI, or leaves them unchanged if the base URI isnull
.MutableUri
MutableUri. rebase(MutableUri base)
Changes the base scheme, host and port of this MutableUri to that specified in a base URI, or leaves them unchanged if the base URI isnull
.MutableUri
MutableUri. relativize(MutableUri uri)
Relativizes the given URI against this URI.MutableUri
MutableUri. resolve(MutableUri uri)
Resolves the given URI against this URI.static MutableUri
MutableUri. uri(String uri)
Factory method for avoiding typingnew MutableUri("http://...")
.Methods in org.forgerock.http with parameters of type MutableUri Modifier and Type Method Description int
MutableUri. compareTo(MutableUri o)
MutableUri
MutableUri. rebase(MutableUri base)
Changes the base scheme, host and port of this MutableUri to that specified in a base URI, or leaves them unchanged if the base URI isnull
.MutableUri
MutableUri. relativize(MutableUri uri)
Relativizes the given URI against this URI.MutableUri
MutableUri. resolve(MutableUri uri)
Resolves the given URI against this URI.Constructors in org.forgerock.http with parameters of type MutableUri Constructor Description MutableUri(MutableUri mutableUri)
Builds a new MutableUri with deep copy. -
Uses of MutableUri in org.forgerock.http.header
Methods in org.forgerock.http.header that return MutableUri Modifier and Type Method Description MutableUri
ReferrerHeader. getUri()
Get the URI value of theReferrer
header.Methods in org.forgerock.http.header with parameters of type MutableUri Modifier and Type Method Description ReferrerHeader
ReferrerHeader. setUri(MutableUri uri)
Set the URI value of theReferrer
header. -
Uses of MutableUri in org.forgerock.http.protocol
Methods in org.forgerock.http.protocol that return MutableUri Modifier and Type Method Description MutableUri
Request. getUri()
Returns the fully-qualified URI of the resource being accessed.
-