Uses of Class
org.restlet.client.data.Reference
- 
Packages that use Reference Package Description org.restlet.client Core classes of the API.org.restlet.client.data Information exchanged by components.org.restlet.client.representation Common representation data elements.org.restlet.client.resource Client and server resource classes.org.restlet.client.util Various utility classes. - 
- 
Uses of Reference in org.restlet.client
Methods in org.restlet.client 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.client 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.client with parameters of type Reference Constructor Description Request(Method method, Reference resourceRef)Constructor.Request(Method method, Reference resourceRef, Representation entity)Constructor. - 
Uses of Reference in org.restlet.client.data
Methods in org.restlet.client.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. 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.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.client.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.client.data with parameters of type Reference Modifier and Type Method Description 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.client.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.client.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.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.client.data with type arguments of type Reference Constructor Description ReferenceList(java.util.List<Reference> delegate)Constructor. - 
Uses of Reference in org.restlet.client.representation
Methods in org.restlet.client.representation that return Reference Modifier and Type Method Description ReferenceVariant. getLocationRef()Returns an optional location reference.Methods in org.restlet.client.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.client.resource
Methods in org.restlet.client.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.ReferenceResource. getRootRef()Returns the application root reference.Methods in org.restlet.client.resource with parameters of type Reference Modifier and Type Method Description ClientResourceClientResource. getChild(Reference relativeRef)Returns the child resource defined by its URI relatively to the current resource.voidClientResource. setHostRef(Reference hostRef)Sets the host reference.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.Method parameters in org.restlet.client.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.Constructors in org.restlet.client.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. - 
Uses of Reference in org.restlet.client.util
Methods in org.restlet.client.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.client.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. 
 -