Uses of Class
org.restlet.data.Reference

Packages that use Reference
org.restlet Core classes of the API. 
org.restlet.data Information exchanged by components. 
org.restlet.representation Common representation data elements. 
org.restlet.resource Client and server resource classes. 
org.restlet.routing Classes related to call routing. 
org.restlet.service Services used by applications and components. 
org.restlet.util Various utility classes. 
 

Uses of Reference in org.restlet
 

Methods in org.restlet that return Reference
 Reference Request.getHostRef()
          Returns the host reference.
 Reference Response.getLocationRef()
          Returns the location reference.
 Reference Request.getOriginalRef()
          Returns the original reference as requested by the client.
 Reference Request.getReferrerRef()
          Returns the referrer reference if available.
 Reference Request.getResourceRef()
          Returns the reference of the target resource.
 Reference Request.getRootRef()
          Returns the application root reference.
 

Methods in org.restlet with parameters of type Reference
 void Response.redirectPermanent(Reference targetRef)
          Permanently redirects the client to a target URI.
 void Response.redirectSeeOther(Reference targetRef)
          Redirects the client to a different URI that SHOULD be retrieved using a GET method on that resource.
 void Response.redirectTemporary(Reference targetRef)
          Temporarily redirects the client to a target URI.
 void Request.setHostRef(Reference hostRef)
          Sets the host reference.
 void Response.setLocationRef(Reference locationRef)
          Sets the reference that the client should follow for redirections or resource creations.
 void Request.setOriginalRef(Reference originalRef)
          Sets the original reference requested by the client.
 void Request.setReferrerRef(Reference referrerRef)
          Sets the referrer reference if available.
 void Request.setResourceRef(Reference resourceRef)
          Sets the target resource reference.
 void Request.setRootRef(Reference rootRef)
          Sets the application root reference.
 

Constructors in org.restlet with parameters of type Reference
Component(Reference xmlConfigRef)
          Constructor with the reference to the XML configuration file.
Request(Method method, Reference resourceRef)
          Constructor.
Request(Method method, Reference resourceRef, Representation entity)
          Constructor.
 

Uses of Reference in org.restlet.data
 

Subclasses of Reference in org.restlet.data
 class LocalReference
          Reference to a local resource.
 

Methods in org.restlet.data that return Reference
 Reference Reference.addQueryParameter(String name, String value)
          Adds a parameter to the query component.
 Reference Reference.addSegment(String value)
          Adds a segment at the end of the path.
 Reference Reference.clone()
           
 Reference Reference.getBaseRef()
          Returns the base reference for relative references.
 Reference ChallengeResponse.getDigestRef()
          Returns the Request.getResourceRef() value duplicated here in case a proxy changed it.
 Reference ReferenceList.getIdentifier()
          Returns the list identifier.
 Reference LocalReference.getJarFileRef()
          Returns the JAR file reference.
 Reference Reference.getParentRef()
          Returns the parent reference of a hierarchical reference.
 Reference Reference.getRelativeRef()
          Returns the current reference as a relative reference to the current base reference.
 Reference Reference.getRelativeRef(Reference base)
          Returns the current reference relatively to a base reference.
 Reference Reference.getTargetRef()
          Returns the target reference.
 Reference Reference.normalize()
          Normalizes the reference.
 

Methods in org.restlet.data that return types with arguments of type Reference
 List<Reference> ChallengeRequest.getDomainRefs()
          Returns the base URI references that collectively define the protected domains for the digest authentication.
 

Methods in org.restlet.data with parameters of type Reference
static LocalReference LocalReference.createJarReference(Reference jarFile, String entryPath)
          Constructor.
static LocalReference LocalReference.createZipReference(Reference zipFile, String entryPath)
          Constructor.
 Reference Reference.getRelativeRef(Reference base)
          Returns the current reference relatively to a base reference.
 boolean Reference.isEquivalentTo(Reference ref)
          Returns true if both reference are equivalent, meaning that they resolve to the same target reference.
 boolean Reference.isParent(Reference childRef)
          Indicates if the reference is a parent of the hierarchical child reference.
 void Reference.setBaseRef(Reference baseRef)
          Sets the base reference for relative references.
 void ChallengeResponse.setDigestRef(Reference digestRef)
          Sets the digest URI reference.
 void ReferenceList.setIdentifier(Reference identifier)
          Sets the list reference.
 

Method parameters in org.restlet.data with type arguments of type Reference
 void ChallengeRequest.setDomainRefs(List<Reference> domainRefs)
          Sets the URI references that define the protection domains for the digest authentication.
 

Constructors in org.restlet.data with parameters of type Reference
LocalReference(Reference localRef)
          Constructor.
Reference(Reference ref)
          Clone constructor.
Reference(Reference baseRef, Reference uriReference)
          Constructor from an URI reference (most likely relative).
Reference(Reference baseRef, String uriRef)
          Constructor from an URI reference (most likely relative).
Reference(Reference baseRef, String relativePart, String query, String fragment)
          Constructor of relative reference from its parts.
 

Constructor parameters in org.restlet.data with type arguments of type Reference
ReferenceList(List<Reference> delegate)
          Constructor.
 

Uses of Reference in org.restlet.representation
 

Methods in org.restlet.representation that return Reference
 Reference Variant.getIdentifier()
          Deprecated. Use Variant.getLocationRef() instead.
 Reference Variant.getLocationRef()
          Returns an optional location reference.
 

Methods in org.restlet.representation with parameters of type Reference
 void Variant.setIdentifier(Reference identifier)
          Deprecated. Use Variant.setLocationRef(Reference) instead
 void Variant.setLocationRef(Reference location)
          Sets the optional identifier.
 

Uses of Reference in org.restlet.resource
 

Methods in org.restlet.resource that return Reference
 Reference Handler.generateRef(String uriTemplate)
          Deprecated. Generates a reference based on a template URI.
 Reference UniformResource.getHostRef()
          Returns the host reference.
 Reference UniformResource.getLocationRef()
          Returns the reference that the client should follow for redirections or resource creations.
 Reference UniformResource.getOriginalRef()
          Returns the original reference as requested by the client.
 Reference UniformResource.getReference()
          Returns the URI reference.
 Reference UniformResource.getReferrerRef()
          Returns the referrer reference if available.
 Reference Directory.getRootRef()
          Returns the root URI from which the relative resource URIs will be looked up.
 Reference UniformResource.getRootRef()
          Returns the application root reference.
 

Methods in org.restlet.resource that return types with arguments of type Reference
 Comparator<Reference> Directory.getComparator()
          Returns the reference comparator used to sort index pages.
 

Methods in org.restlet.resource with parameters of type Reference
static
<T> T
ClientResource.create(Context context, Reference reference, Class<? extends T> resourceInterface)
          Creates a client resource that proxy calls to the given Java interface into Restlet method calls.
static
<T> T
ClientResource.create(Reference reference, Class<? extends T> resourceInterface)
          Creates a client resource that proxy calls to the given Java interface into Restlet method calls.
 ClientResource ClientResource.getChild(Reference relativeRef)
          Returns the child resource defined by its URI relatively to the current resource.
<T> T
ClientResource.getChild(Reference relativeRef, Class<? extends T> resourceInterface)
          Wraps the child client resource to proxy calls to the given Java interface into Restlet method calls.
 void ServerResource.redirectPermanent(Reference targetRef)
          Permanently redirects the client to a target URI.
 void ServerResource.redirectSeeOther(Reference targetRef)
          Redirects the client to a different URI that SHOULD be retrieved using a GET method on that resource.
 void ServerResource.redirectTemporary(Reference targetRef)
          Temporarily redirects the client to a target URI.
 void ClientResource.setHostRef(Reference hostRef)
          Sets the host reference.
 void ServerResource.setLocationRef(Reference locationRef)
          Sets the reference that the client should follow for redirections or resource creations.
 void ClientResource.setOriginalRef(Reference originalRef)
          Sets the original reference requested by the client.
 void ClientResource.setReference(Reference reference)
          Sets the resource's reference.
 void ClientResource.setReferrerRef(Reference referrerRef)
          Sets the referrer reference if available.
 void Directory.setRootRef(Reference rootRef)
          Sets the root URI from which the relative resource URIs will be lookep up.
 

Method parameters in org.restlet.resource with type arguments of type Reference
 void Directory.setComparator(Comparator<Reference> comparator)
          Sets the reference comparator used to sort index pages.
 

Constructors in org.restlet.resource with parameters of type Reference
ClientResource(Context context, Method method, Reference reference)
          Constructor.
ClientResource(Context context, Reference reference)
          Constructor.
ClientResource(Method method, Reference reference)
          Constructor.
ClientResource(Reference reference)
          Constructor.
Directory(Context context, Reference rootLocalReference)
          Constructor.
 

Uses of Reference in org.restlet.routing
 

Methods in org.restlet.routing that return Reference
protected  Reference Redirector.getTargetRef(Request request, Response response)
          Returns the target reference to redirect to.
 

Methods in org.restlet.routing with parameters of type Reference
protected  void Redirector.inboundServerRedirect(Reference targetRef, Request request, Response response)
          Redirects a given call to a target reference.
protected  void Redirector.outboundServerRedirect(Reference targetRef, Request request, Response response)
          Redirects a given call to a target reference.
protected  void Redirector.redirectDispatcher(Reference targetRef, Request request, Response response)
          Deprecated. Use Redirector.outboundServerRedirect(Reference, Request, Response) instead.
protected  void Redirector.serverRedirect(Restlet next, Reference targetRef, Request request, Response response)
          Redirects a given call on the server-side to a next Restlet with a given target reference.
 

Uses of Reference in org.restlet.service
 

Methods in org.restlet.service that return Reference
 Reference StatusService.getHomeRef()
          Returns the home URI to propose in case of error.
 Reference LogService.getLogPropertiesRef()
          Returns the URI reference of the log properties.
 

Methods in org.restlet.service with parameters of type Reference
 void StatusService.setHomeRef(Reference homeRef)
          Sets the home URI to propose in case of error.
 void LogService.setLogPropertiesRef(Reference logPropertiesRef)
          Sets the URI reference of the log properties.
 

Uses of Reference in org.restlet.util
 

Methods in org.restlet.util that return Reference
 Reference WrapperRequest.getHostRef()
          Returns the host reference.
 Reference WrapperRepresentation.getIdentifier()
           
 Reference WrapperResponse.getLocationRef()
          Returns the reference that the client should follow for redirections or resource creations.
 Reference WrapperRepresentation.getLocationRef()
           
 Reference WrapperRequest.getOriginalRef()
           
 Reference WrapperRequest.getReferrerRef()
          Returns the referrer reference if available.
 Reference WrapperRequest.getResourceRef()
          Returns the reference of the target resource.
 Reference WrapperRequest.getRootRef()
          Returns the application root reference.
 

Methods in org.restlet.util with parameters of type Reference
 void WrapperResponse.redirectPermanent(Reference targetRef)
          Permanently redirects the client to a target URI.
 void WrapperResponse.redirectSeeOther(Reference targetRef)
          Redirects the client to a different URI that SHOULD be retrieved using a GET method on that resource.
 void WrapperResponse.redirectTemporary(Reference targetRef)
          Temporarily redirects the client to a target URI.
 void WrapperRequest.setHostRef(Reference hostRef)
          Sets the host reference.
 void WrapperRepresentation.setIdentifier(Reference identifier)
           
 void WrapperResponse.setLocationRef(Reference locationRef)
          Sets the reference that the client should follow for redirections or resource creations.
 void WrapperRepresentation.setLocationRef(Reference location)
           
 void WrapperRequest.setOriginalRef(Reference originalRef)
           
 void WrapperRequest.setReferrerRef(Reference referrerRef)
          Sets the referrer reference if available.
 void WrapperRequest.setResourceRef(Reference resourceRef)
          Sets the target resource reference.
 void WrapperRequest.setRootRef(Reference rootRef)
          Sets the application root reference.
 



Copyright © 2005-2011 Noelios Technologies.