|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use UriBuilder | |
---|---|
com.sun.jersey.api.client | Provides support for client-side communication with HTTP-based RESTful Web services. |
com.sun.jersey.api.core | Provides support for configuration. |
com.sun.jersey.api.uri | Provides support for JAX-RS URI templates and encoding/decoding URI components. |
com.sun.jersey.core.spi.factory | Provides support for factories of particular component types. |
com.sun.jersey.server.impl.application | |
com.sun.jersey.spi.container | Provides support for containers and the web application that manages resource classes. |
javax.ws.rs.core | Low-level interfaces and annotations used to create RESTful service resources. |
javax.ws.rs.ext | APIs that provide extensions to the types supported by the JAX-RS API. |
Uses of UriBuilder in com.sun.jersey.api.client |
---|
Methods in com.sun.jersey.api.client that return UriBuilder | |
---|---|
UriBuilder |
WebResource.getBuilder()
Deprecated. |
UriBuilder |
AsyncWebResource.getBuilder()
Deprecated. |
UriBuilder |
WebResource.getUriBuilder()
Get the URI builder to the resource. |
UriBuilder |
AsyncWebResource.getUriBuilder()
Get the URI builder to the resource. |
UriBuilder |
ViewResource.getUriBuilder()
Get the URI builder to the resource. |
UriBuilder |
AsyncViewResource.getUriBuilder()
Get the URI builder to the resource. |
Uses of UriBuilder in com.sun.jersey.api.core |
---|
Methods in com.sun.jersey.api.core that return UriBuilder | |
---|---|
UriBuilder |
HttpRequestContext.getAbsolutePathBuilder()
Get the absolute path of the request in the form of a UriBuilder. |
UriBuilder |
HttpRequestContext.getBaseUriBuilder()
Get the base URI of the application in the form of a UriBuilder. |
UriBuilder |
HttpRequestContext.getRequestUriBuilder()
Get the absolute request URI in the form of a UriBuilder. |
Uses of UriBuilder in com.sun.jersey.api.uri |
---|
Subclasses of UriBuilder in com.sun.jersey.api.uri | |
---|---|
class |
UriBuilderImpl
An implementaton of UriBuilder . |
Methods in com.sun.jersey.api.uri that return UriBuilder | |
---|---|
UriBuilder |
UriBuilderImpl.clone()
|
UriBuilder |
UriBuilderImpl.fragment(String fragment)
|
UriBuilder |
UriBuilderImpl.host(String host)
|
UriBuilder |
UriBuilderImpl.matrixParam(String name,
Object... values)
|
UriBuilder |
UriBuilderImpl.path(Class resource)
|
UriBuilder |
UriBuilderImpl.path(Class resource,
String methodName)
|
UriBuilder |
UriBuilderImpl.path(Method method)
|
UriBuilder |
UriBuilderImpl.path(String path)
|
UriBuilder |
UriBuilderImpl.port(int port)
|
UriBuilder |
UriBuilderImpl.queryParam(String name,
Object... values)
|
UriBuilder |
UriBuilderImpl.replaceMatrix(String matrix)
|
UriBuilder |
UriBuilderImpl.replaceMatrixParam(String name,
Object... values)
|
UriBuilder |
UriBuilderImpl.replacePath(String path)
|
UriBuilder |
UriBuilderImpl.replaceQuery(String query)
|
UriBuilder |
UriBuilderImpl.replaceQueryParam(String name,
Object... values)
|
UriBuilder |
UriBuilderImpl.scheme(String scheme)
|
UriBuilder |
UriBuilderImpl.schemeSpecificPart(String ssp)
|
UriBuilder |
UriBuilderImpl.segment(String... segments)
|
UriBuilder |
UriBuilderImpl.uri(URI uri)
|
UriBuilder |
UriBuilderImpl.userInfo(String ui)
|
Uses of UriBuilder in com.sun.jersey.core.spi.factory |
---|
Methods in com.sun.jersey.core.spi.factory that return UriBuilder | |
---|---|
UriBuilder |
AbstractRuntimeDelegate.createUriBuilder()
|
Uses of UriBuilder in com.sun.jersey.server.impl.application |
---|
Methods in com.sun.jersey.server.impl.application that return UriBuilder | |
---|---|
UriBuilder |
WebApplicationContext.getAbsolutePathBuilder()
|
UriBuilder |
WebApplicationContext.getBaseUriBuilder()
|
UriBuilder |
WebApplicationContext.getRequestUriBuilder()
|
Uses of UriBuilder in com.sun.jersey.spi.container |
---|
Methods in com.sun.jersey.spi.container that return UriBuilder | |
---|---|
UriBuilder |
ContainerRequest.getAbsolutePathBuilder()
|
UriBuilder |
AdaptingContainerRequest.getAbsolutePathBuilder()
|
UriBuilder |
ContainerRequest.getBaseUriBuilder()
|
UriBuilder |
AdaptingContainerRequest.getBaseUriBuilder()
|
UriBuilder |
ContainerRequest.getRequestUriBuilder()
|
UriBuilder |
AdaptingContainerRequest.getRequestUriBuilder()
|
Uses of UriBuilder in javax.ws.rs.core |
---|
Methods in javax.ws.rs.core that return UriBuilder | |
---|---|
abstract UriBuilder |
UriBuilder.clone()
Create a copy of the UriBuilder preserving its state. |
abstract UriBuilder |
UriBuilder.fragment(String fragment)
Set the URI fragment. |
static UriBuilder |
UriBuilder.fromPath(String path)
Create a new instance representing a relative URI initialized from a URI path. |
static UriBuilder |
UriBuilder.fromResource(Class<?> resource)
Create a new instance representing a relative URI initialized from a root resource class. |
static UriBuilder |
UriBuilder.fromUri(String uri)
Create a new instance initialized from an existing URI. |
static UriBuilder |
UriBuilder.fromUri(URI uri)
Create a new instance initialized from an existing URI. |
UriBuilder |
UriInfo.getAbsolutePathBuilder()
Get the absolute path of the request in the form of a UriBuilder. |
UriBuilder |
UriInfo.getBaseUriBuilder()
Get the base URI of the application in the form of a UriBuilder. |
UriBuilder |
UriInfo.getRequestUriBuilder()
Get the absolute request URI in the form of a UriBuilder. |
abstract UriBuilder |
UriBuilder.host(String host)
Set the URI host. |
abstract UriBuilder |
UriBuilder.matrixParam(String name,
Object... values)
Append a matrix parameter to the existing set of matrix parameters of the current final segment of the URI path. |
protected static UriBuilder |
UriBuilder.newInstance()
Creates a new instance of UriBuilder. |
abstract UriBuilder |
UriBuilder.path(Class resource)
Append the path from a Path-annotated class to the existing path. |
abstract UriBuilder |
UriBuilder.path(Class resource,
String method)
Append the path from a Path-annotated method to the existing path. |
abstract UriBuilder |
UriBuilder.path(Method method)
Append the path from a Path -annotated method to the
existing path. |
abstract UriBuilder |
UriBuilder.path(String path)
Append path to the existing path. |
abstract UriBuilder |
UriBuilder.port(int port)
Set the URI port. |
abstract UriBuilder |
UriBuilder.queryParam(String name,
Object... values)
Append a query parameter to the existing set of query parameters. |
abstract UriBuilder |
UriBuilder.replaceMatrix(String matrix)
Set the matrix parameters of the current final segment of the current URI path. |
abstract UriBuilder |
UriBuilder.replaceMatrixParam(String name,
Object... values)
Replace the existing value(s) of a matrix parameter on the current final segment of the URI path. |
abstract UriBuilder |
UriBuilder.replacePath(String path)
Set the URI path. |
abstract UriBuilder |
UriBuilder.replaceQuery(String query)
Set the URI query string. |
abstract UriBuilder |
UriBuilder.replaceQueryParam(String name,
Object... values)
Replace the existing value(s) of a query parameter. |
abstract UriBuilder |
UriBuilder.scheme(String scheme)
Set the URI scheme. |
abstract UriBuilder |
UriBuilder.schemeSpecificPart(String ssp)
Set the URI scheme-specific-part (see URI ). |
abstract UriBuilder |
UriBuilder.segment(String... segments)
Append path segments to the existing path. |
abstract UriBuilder |
UriBuilder.uri(URI uri)
Copies the non-null components of the supplied URI to the UriBuilder replacing any existing values for those components. |
abstract UriBuilder |
UriBuilder.userInfo(String ui)
Set the URI user-info. |
Uses of UriBuilder in javax.ws.rs.ext |
---|
Methods in javax.ws.rs.ext that return UriBuilder | |
---|---|
abstract UriBuilder |
RuntimeDelegate.createUriBuilder()
Create a new instance of a UriBuilder . |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |