Uses of Class
jakarta.ws.rs.core.Link
Package | Description |
---|---|
jakarta.ws.rs.client |
The JAX-RS client API
|
jakarta.ws.rs.container |
Container-specific JAX-RS API.
|
jakarta.ws.rs.core |
Low-level interfaces and annotations used to create RESTful service resources.
|
-
Uses of Link in jakarta.ws.rs.client
Methods in jakarta.ws.rs.client that return Link Modifier and Type Method Description Link
ClientResponseContext. getLink(String relation)
Get the link for the relation.Methods in jakarta.ws.rs.client that return types with arguments of type Link Modifier and Type Method Description Set<Link>
ClientResponseContext. getLinks()
Get the links attached to the message as header.Methods in jakarta.ws.rs.client with parameters of type Link Modifier and Type Method Description Invocation.Builder
Client. invocation(Link link)
Build an invocation builder from a link.WebTarget
Client. target(Link link)
Build a new web resource target. -
Uses of Link in jakarta.ws.rs.container
Methods in jakarta.ws.rs.container that return Link Modifier and Type Method Description Link
ContainerResponseContext. getLink(String relation)
Get the link for the relation.Methods in jakarta.ws.rs.container that return types with arguments of type Link Modifier and Type Method Description Set<Link>
ContainerResponseContext. getLinks()
Get the links attached to the message as header. -
Uses of Link in jakarta.ws.rs.core
Methods in jakarta.ws.rs.core that return Link Modifier and Type Method Description Link
Link.Builder. build(Object... values)
Finish building this link using the supplied values as URI parameters.Link
Link.Builder. buildRelativized(URI uri, Object... values)
Finish building this link using the supplied values as URI parameters and relativize the result with respect to the supplied URI.abstract Link
Response. getLink(String relation)
Get the link for the relation.Link
Link.JaxbAdapter. unmarshal(Link.JaxbLink v)
Convert aLink.JaxbLink
into aLink
.static Link
Link. valueOf(String value)
Simple parser to convert link header string representations into a link.Methods in jakarta.ws.rs.core that return types with arguments of type Link Modifier and Type Method Description abstract Set<Link>
Response. getLinks()
Get the links attached to the message as headers.Methods in jakarta.ws.rs.core with parameters of type Link Modifier and Type Method Description static Link.Builder
Link. fromLink(Link link)
Create a new builder instance initialized from another link.static UriBuilder
UriBuilder. fromLink(Link link)
Create a new instance initialized from a Link.Link.Builder
Link.Builder. link(Link link)
Initialize builder using another link.abstract Response.ResponseBuilder
Response.ResponseBuilder. links(Link... links)
Add one or more link headers.Link.JaxbLink
Link.JaxbAdapter. marshal(Link v)
Convert aLink
into aLink.JaxbLink
.