Uses of Class
org.restlet.data.Reference
- 
Packages that use Reference Package Description 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 Modifier and Type Method Description ReferenceRequest. getHostRef()Returns the host reference.ReferenceResponse. getLocationRef()Returns the location reference.ReferenceRequest. getOriginalRef()Returns the original reference as requested by the client.ReferenceRequest. getReferrerRef()Returns the referrer reference if available.ReferenceRequest. getResourceRef()Returns the reference of the target resource.ReferenceRequest. getRootRef()Returns the application root reference.Methods in org.restlet with parameters of type Reference Modifier and Type Method Description voidResponse. redirectPermanent(Reference targetRef)Permanently redirects the client to a target URI.voidResponse. redirectSeeOther(Reference targetRef)Redirects the client to a different URI that SHOULD be retrieved using a GET method on that resource.voidResponse. redirectTemporary(Reference targetRef)Temporarily redirects the client to a target URI.voidRequest. setHostRef(Reference hostRef)Sets the host reference.voidResponse. setLocationRef(Reference locationRef)Sets the reference that the client should follow for redirections or resource creations.voidRequest. setOriginalRef(Reference originalRef)Sets the original reference requested by the client.voidRequest. setReferrerRef(Reference referrerRef)Sets the referrer reference if available.voidRequest. setResourceRef(Reference resourceRef)Sets the target resource reference.voidRequest. setRootRef(Reference rootRef)Sets the application root reference.Constructors in org.restlet with parameters of type Reference Constructor Description Component(Reference xmlConfigRef)Deprecated.Use XML support in the Spring extension instead.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 Modifier and Type Class Description classLocalReferenceReference to a local resource.Methods in org.restlet.data that return Reference Modifier and Type Method Description ReferenceReference. addQueryParameter(java.lang.String name, java.lang.String value)Adds a parameter to the query component.ReferenceReference. addQueryParameter(Parameter parameter)Adds a parameter to the query component.ReferenceReference. addQueryParameters(java.lang.Iterable<Parameter> parameters)Adds several parameters to the query component.ReferenceReference. addSegment(java.lang.String value)Adds a segment at the end of the path.ReferenceReference. clone()ReferenceReference. getBaseRef()Returns the base reference for relative references.ReferenceChallengeResponse. getDigestRef()Returns theRequest.getResourceRef()value duplicated here in case a proxy changed it.ReferenceReferenceList. getIdentifier()Returns the list identifier.ReferenceLocalReference. getJarFileRef()Returns the JAR file reference.ReferenceReference. getParentRef()Returns the parent reference of a hierarchical reference.ReferenceReference. getRelativeRef()Returns the current reference as a relative reference to the current base reference.ReferenceReference. getRelativeRef(Reference base)Returns the current reference relatively to a base reference.ReferenceReference. getTargetRef()Returns the target reference.ReferenceReference. normalize()Normalizes the reference.Methods in org.restlet.data that return types with arguments of type Reference Modifier and Type Method Description java.util.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 Modifier and Type Method Description static LocalReferenceLocalReference. createJarReference(Reference jarFile, java.lang.String entryPath)Constructor.static LocalReferenceLocalReference. createZipReference(Reference zipFile, java.lang.String entryPath)Constructor.ReferenceReference. getRelativeRef(Reference base)Returns the current reference relatively to a base reference.booleanReference. isEquivalentTo(Reference ref)Returns true if both reference are equivalent, meaning that they resolve to the same target reference.booleanReference. isParent(Reference childRef)Indicates if the reference is a parent of the hierarchical child reference.voidReference. setBaseRef(Reference baseRef)Sets the base reference for relative references.voidChallengeResponse. setDigestRef(Reference digestRef)Sets the digest URI reference.voidReferenceList. setIdentifier(Reference identifier)Sets the list reference.Method parameters in org.restlet.data with type arguments of type Reference Modifier and Type Method Description voidChallengeRequest. setDomainRefs(java.util.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 Constructor Description ChallengeResponse(ChallengeScheme scheme, Series<Parameter> parameters, java.lang.String identifier, char[] secret, java.lang.String secretAlgorithm, java.lang.String realm, java.lang.String quality, Reference digestRef, java.lang.String digestAlgorithm, java.lang.String opaque, java.lang.String clientNonce, java.lang.String serverNonce, int serverNounceCount, long timeIssued)Constructor.LocalReference(Reference localRef)Constructor.Reference(Reference ref)Clone constructor.Reference(Reference baseRef, java.lang.String uriRef)Constructor from an URI reference (most likely relative).Reference(Reference baseRef, java.lang.String relativePart, java.lang.String query, java.lang.String fragment)Constructor of relative reference from its parts.Reference(Reference baseRef, Reference uriReference)Constructor from an URI reference (most likely relative).Constructor parameters in org.restlet.data with type arguments of type Reference Constructor Description ReferenceList(java.util.List<Reference> delegate)Constructor. - 
Uses of Reference in org.restlet.representation
Methods in org.restlet.representation that return Reference Modifier and Type Method Description ReferenceVariant. getLocationRef()Returns an optional location reference.Methods in org.restlet.representation with parameters of type Reference Modifier and Type Method Description voidVariant. setLocationRef(Reference location)Sets the optional identifier. - 
Uses of Reference in org.restlet.resource
Methods in org.restlet.resource that return Reference Modifier and Type Method Description ReferenceClientResource. addQueryParameter(java.lang.String name, java.lang.String value)Adds a parameter to the query component.ReferenceClientResource. addQueryParameter(Parameter parameter)Adds a parameter to the query component.ReferenceClientResource. addQueryParameters(java.lang.Iterable<Parameter> parameters)Adds several parameters to the query component.ReferenceClientResource. addSegment(java.lang.String value)Adds a segment at the end of the path.ReferenceResource. getHostRef()Returns the host reference.ReferenceResource. getLocationRef()Returns the reference that the client should follow for redirections or resource creations.ReferenceResource. getOriginalRef()Returns the original reference as requested by the client.ReferenceResource. getReference()Returns the URI reference.ReferenceResource. getReferrerRef()Returns the referrer reference if available.ReferenceDirectory. getRootRef()Returns the root URI from which the relative resource URIs will be looked up.ReferenceResource. getRootRef()Returns the application root reference.Methods in org.restlet.resource that return types with arguments of type Reference Modifier and Type Method Description java.util.Comparator<Reference>Directory. getComparator()Returns the reference comparator used to sort index pages.Methods in org.restlet.resource with parameters of type Reference Modifier and Type Method Description static <T> TClientResource. create(Context context, Reference reference, java.lang.Class<? extends T> resourceInterface)Creates a client resource that proxy calls to the given Java interface into Restlet method calls.static <T> TClientResource. create(Reference reference, java.lang.Class<? extends T> resourceInterface)Creates a client resource that proxy calls to the given Java interface into Restlet method calls.ClientResourceClientResource. getChild(Reference relativeRef)Returns the child resource defined by its URI relatively to the current resource.<T> TClientResource. getChild(Reference relativeRef, java.lang.Class<? extends T> resourceInterface)Wraps the child client resource to proxy calls to the given Java interface into Restlet method calls.voidServerResource. redirectPermanent(Reference targetRef)Permanently redirects the client to a target URI.voidServerResource. redirectSeeOther(Reference targetRef)Redirects the client to a different URI that SHOULD be retrieved using a GET method on that resource.voidServerResource. redirectTemporary(Reference targetRef)Temporarily redirects the client to a target URI.voidClientResource. setHostRef(Reference hostRef)Sets the host reference.voidServerResource. setLocationRef(Reference locationRef)Sets the reference that the client should follow for redirections or resource creations.voidClientResource. setOriginalRef(Reference originalRef)Sets the original reference requested by the client.voidClientResource. setReference(Reference reference)Sets the resource's reference.voidClientResource. setReferrerRef(Reference referrerRef)Sets the referrer reference if available.voidDirectory. 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 Modifier and Type Method Description protected voidClientResource. handle(Request request, Response response, java.util.List<Reference> references, int retryAttempt, Uniform next)Handle the call and follow redirection for safe methods.protected voidClientResource. redirect(Request request, Response response, java.util.List<Reference> references, int retryAttempt, Uniform next)Effectively redirects a client call.protected voidClientResource. retry(Request request, Response response, java.util.List<Reference> references, int retryAttempt, Uniform next)Effectively retries a failed client call.voidDirectory. setComparator(java.util.Comparator<Reference> comparator)Sets the reference comparator used to sort index pages.Constructors in org.restlet.resource with parameters of type Reference Constructor Description 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 Modifier and Type Method Description protected ReferenceRedirector. getTargetRef(Request request, Response response)Returns the target reference to redirect to by automatically resolving URI template variables found using theTemplateclass using the request and response as data models.Methods in org.restlet.routing with parameters of type Reference Modifier and Type Method Description protected voidRedirector. inboundServerRedirect(Reference targetRef, Request request, Response response)Redirects a given call to a target reference.protected voidRedirector. outboundServerRedirect(Reference targetRef, Request request, Response response)Redirects a given call to a target reference.protected voidRedirector. 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 Modifier and Type Method Description ReferenceStatusService. getHomeRef()Returns the home URI to propose in case of error.ReferenceLogService. getLogPropertiesRef()Returns the URI reference of the log properties.Methods in org.restlet.service with parameters of type Reference Modifier and Type Method Description voidStatusService. setHomeRef(Reference homeRef)Sets the home URI to propose in case of error.voidLogService. 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 Modifier and Type Method Description ReferenceWrapperRequest. getHostRef()Returns the host reference.ReferenceWrapperRepresentation. getLocationRef()ReferenceWrapperResponse. getLocationRef()Returns the reference that the client should follow for redirections or resource creations.ReferenceWrapperRequest. getOriginalRef()ReferenceWrapperRequest. getReferrerRef()Returns the referrer reference if available.ReferenceWrapperRequest. getResourceRef()Returns the reference of the target resource.ReferenceWrapperRequest. getRootRef()Returns the application root reference.Methods in org.restlet.util with parameters of type Reference Modifier and Type Method Description voidWrapperResponse. redirectPermanent(Reference targetRef)Permanently redirects the client to a target URI.voidWrapperResponse. redirectSeeOther(Reference targetRef)Redirects the client to a different URI that SHOULD be retrieved using a GET method on that resource.voidWrapperResponse. redirectTemporary(Reference targetRef)Temporarily redirects the client to a target URI.voidWrapperRequest. setHostRef(Reference hostRef)Sets the host reference.voidWrapperRepresentation. setLocationRef(Reference location)voidWrapperResponse. setLocationRef(Reference locationRef)Sets the reference that the client should follow for redirections or resource creations.voidWrapperRequest. setOriginalRef(Reference originalRef)voidWrapperRequest. setReferrerRef(Reference referrerRef)Sets the referrer reference if available.voidWrapperRequest. setResourceRef(Reference resourceRef)Sets the target resource reference.voidWrapperRequest. setRootRef(Reference rootRef)Sets the application root reference. 
 -