Uses of Class
javax.ws.rs.core.Link

Packages that use Link
javax.ws.rs.client The JAX-RS client API 
javax.ws.rs.container Container-specific JAX-RS API. 
javax.ws.rs.core Low-level interfaces and annotations used to create RESTful service resources. 
org.glassfish.jersey.client Jersey client-side classes. 
org.glassfish.jersey.message.internal Common Jersey internal messaging classes. 
org.glassfish.jersey.server Jersey server-side classes. 
 

Uses of Link in javax.ws.rs.client
 

Methods in javax.ws.rs.client that return Link
 Link ClientResponseContext.getLink(String relation)
          Get the link for the relation.
 

Methods in javax.ws.rs.client that return types with arguments of type Link
 Set<Link> ClientResponseContext.getLinks()
          Get the links attached to the message as header.
 

Methods in javax.ws.rs.client with parameters of type Link
 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 javax.ws.rs.container
 

Methods in javax.ws.rs.container that return Link
 Link ContainerResponseContext.getLink(String relation)
          Get the link for the relation.
 

Methods in javax.ws.rs.container that return types with arguments of type Link
 Set<Link> ContainerResponseContext.getLinks()
          Get the links attached to the message as header.
 

Uses of Link in javax.ws.rs.core
 

Methods in javax.ws.rs.core that return Link
 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 a Link.JaxbLink into a Link.
static Link Link.valueOf(String value)
          Simple parser to convert link header string representations into a link.
 

Methods in javax.ws.rs.core that return types with arguments of type Link
abstract  Set<Link> Response.getLinks()
          Get the links attached to the message as headers.
 

Methods in javax.ws.rs.core with parameters of type Link
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 a Link into a Link.JaxbLink.
 

Uses of Link in org.glassfish.jersey.client
 

Methods in org.glassfish.jersey.client that return types with arguments of type Link
 Set<Link> ClientResponse.getLinks()
           
 

Methods in org.glassfish.jersey.client with parameters of type Link
 JerseyInvocation.Builder JerseyClient.invocation(Link link)
           
 JerseyWebTarget JerseyClient.target(Link link)
           
 

Uses of Link in org.glassfish.jersey.message.internal
 

Subclasses of Link in org.glassfish.jersey.message.internal
 class JerseyLink
          Jersey implementation of JAX-RS Link contract.
 

Methods in org.glassfish.jersey.message.internal that return Link
 Link JerseyLink.Builder.buildRelativized(URI uri, Object... values)
           
 Link LinkProvider.fromString(String value)
           
 Link InboundMessageContext.getLink(String relation)
          Get the link for the relation.
 Link OutboundJaxrsResponse.getLink(String relation)
           
 Link OutboundMessageContext.getLink(String relation)
          Get the link for the relation.
 

Methods in org.glassfish.jersey.message.internal that return types with arguments of type Link
 Set<Link> InboundMessageContext.getLinks()
          Get the links attached to the message as header.
 Set<Link> OutboundJaxrsResponse.getLinks()
           
 Set<Link> OutboundMessageContext.getLinks()
          Get the links attached to the message as header.
 

Methods in org.glassfish.jersey.message.internal with parameters of type Link
 JerseyLink.Builder JerseyLink.Builder.link(Link link)
           
 Response.ResponseBuilder OutboundJaxrsResponse.Builder.links(Link... links)
           
 String LinkProvider.toString(Link value)
           
 

Uses of Link in org.glassfish.jersey.server
 

Methods in org.glassfish.jersey.server that return Link
 Link ContainerResponse.getLink(String relation)
           
 

Methods in org.glassfish.jersey.server that return types with arguments of type Link
 Set<Link> ContainerResponse.getLinks()
           
 



Copyright © 2007-2014, Oracle and/or its affiliates. All Rights Reserved. Use is subject to license terms.