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.engine.adapter Adapters between low-level HTTP calls and high-level Restlet Request and Response objects.org.restlet.engine.application Supports Restlet applications.org.restlet.engine.local Supports local connectors and resources.org.restlet.engine.security Supports security.org.restlet.engine.util General utilities.org.restlet.ext.atom Support for the Atom syndication and the AtomPub (Atom Publication Protocol) standards in their 1.0 version.org.restlet.ext.crypto Support for cryptography including Amazon S3 and Windows Azure client authentication.org.restlet.ext.crypto.internal org.restlet.ext.javamail Integration with JavaMail @minor-version@ (POP3 and SMTP clients).org.restlet.ext.jaxrs Support for JAX-RS API.org.restlet.ext.jaxrs.internal.core org.restlet.ext.jaxrs.internal.resteasy org.restlet.ext.nio.internal.request org.restlet.ext.rdf Support for the RDF parsing and generation.org.restlet.ext.rdf.internal org.restlet.ext.rdf.internal.n3 org.restlet.ext.rdf.internal.ntriples org.restlet.ext.rdf.internal.turtle org.restlet.ext.rdf.internal.xml org.restlet.ext.wadl Support the WADL specification.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
Fields in org.restlet declared as Reference Modifier and Type Field Description private ReferenceRequest. hostRefThe host reference.private ReferenceResponse. locationRefThe reference used for redirections or creations.private ReferenceRequest. originalRefThe original reference.private ReferenceRequest. referrerRefThe referrer reference.private ReferenceRequest. resourceRefThe resource reference.private ReferenceRequest. rootRefThe application root reference.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.Fields in org.restlet.data declared as Reference Modifier and Type Field Description private ReferenceReference. baseRefThe base reference for relative references.private ReferenceChallengeResponse. digestRefTheRequest.getResourceRef()value duplicated here in case a proxy changed it.private ReferenceReferenceList. identifierThe list's identifier.Fields in org.restlet.data with type parameters of type Reference Modifier and Type Field Description private java.util.List<Reference>ChallengeRequest. domainRefsThe URI references that define the protection domains.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.engine.adapter
Methods in org.restlet.engine.adapter that return Reference Modifier and Type Method Description ReferenceHttpRequest. getReferrerRef()Returns the referrer reference if available. -
Uses of Reference in org.restlet.engine.application
Constructors in org.restlet.engine.application with parameters of type Reference Constructor Description StatusFilter(Context context, boolean overwriting, java.lang.String email, Reference homeRef)Constructor. -
Uses of Reference in org.restlet.engine.local
Fields in org.restlet.engine.local declared as Reference Modifier and Type Field Description private ReferenceDirectoryServerResource. originalRefThe original target URI, in case of extensions tunneling.private ReferenceDirectoryServerResource. uniqueReferenceThe unique representation of the target URI, if it exists.Methods in org.restlet.engine.local that return Reference Modifier and Type Method Description ReferenceEntityClientHelper. createReference(java.lang.String scheme, java.lang.String encodedParentDirPath, java.lang.String encodedEntityName, java.lang.String decodedVariantName)Generate a Reference for a variant name (which is URL decoded) and handle the translation between the incoming requested path (which is URL encoded). -
Uses of Reference in org.restlet.engine.security
Methods in org.restlet.engine.security that return Reference Modifier and Type Method Description ReferenceAuthenticatorHelper. updateReference(Reference resourceRef, ChallengeResponse challengeResponse, Request request)Optionally updates the request with a challenge response before sending it.static ReferenceAuthenticatorUtils. updateReference(Reference resourceRef, ChallengeResponse challengeResponse, Request request)Optionally updates the request with a challenge response before sending it.Methods in org.restlet.engine.security with parameters of type Reference Modifier and Type Method Description ReferenceAuthenticatorHelper. updateReference(Reference resourceRef, ChallengeResponse challengeResponse, Request request)Optionally updates the request with a challenge response before sending it.static ReferenceAuthenticatorUtils. updateReference(Reference resourceRef, ChallengeResponse challengeResponse, Request request)Optionally updates the request with a challenge response before sending it. -
Uses of Reference in org.restlet.engine.util
Methods in org.restlet.engine.util that return Reference Modifier and Type Method Description static ReferenceReferenceUtils. getOriginalRef(Reference resourceRef, Series<Header> headers)Returns the original reference especially by detecting potential proxy forwardings.static ReferenceReferenceUtils. update(Reference resourceRef, Request request)Returns the request URI.Methods in org.restlet.engine.util with parameters of type Reference Modifier and Type Method Description intAlphabeticalComparator. compare(Reference ref0, Reference ref1)Compares two references.static java.lang.StringReferenceUtils. format(Reference resourceRef, boolean isProxied, Request request)Returns the request URI.static ReferenceReferenceUtils. getOriginalRef(Reference resourceRef, Series<Header> headers)Returns the original reference especially by detecting potential proxy forwardings.private java.lang.StringCallResolver. getReferenceContent(java.lang.String partName, Reference reference)Returns the content corresponding to a reference property.static ReferenceReferenceUtils. update(Reference resourceRef, Request request)Returns the request URI. -
Uses of Reference in org.restlet.ext.atom
Fields in org.restlet.ext.atom declared as Reference Modifier and Type Field Description private ReferenceCategories. baseReferenceThe base reference used to resolve relative references found within the scope of the xml:base attribute.private ReferenceCollection. baseReferenceThe base reference used to resolve relative references found within the scope of the xml:base attribute.private ReferenceFeed. baseReferenceThe base reference used to resolve relative references found within the scope of the xml:base attribute.private ReferenceService. baseReferenceThe base reference used to resolve relative references found within the scope of the xml:base attribute.private ReferenceWorkspace. baseReferenceThe base reference used to resolve relative references found within the scope of the xml:base attribute.private ReferenceContent. externalRefReference to the external representation.private ReferenceCollection. hrefThe hypertext reference.private ReferenceLink. hrefThe link's IRI.private ReferenceFeed. iconImage that provides iconic visual identification for a feed.private ReferenceSource. iconImage that provides iconic visual identification for a feed.private ReferenceFeed. logoImage that provides visual identification for a feed.private ReferenceSource. logoImage that provides visual identification for a feed.private ReferenceService. referenceThe reference.private ReferenceCategories. schemeprivate ReferenceCategory. schemeThe IRI that identifies a categorization scheme.private ReferenceGenerator. uriReference of the generating agent.private ReferencePerson. uriIRI associated with the person.Methods in org.restlet.ext.atom that return Reference Modifier and Type Method Description ReferenceCategories. getBaseReference()Returns the base reference used to resolve relative references found within the scope of the xml:base attribute.ReferenceCollection. getBaseReference()Returns the base reference used to resolve relative references found within the scope of the xml:base attribute.ReferenceFeed. getBaseReference()Returns the base reference used to resolve relative references found within the scope of the xml:base attribute.ReferenceService. getBaseReference()Returns the base reference used to resolve relative references found within the scope of the xml:base attribute.ReferenceWorkspace. getBaseReference()Returns the base reference used to resolve relative references found within the scope of the xml:base attribute.ReferenceContent. getExternalRef()Returns the reference to the external representation.ReferenceCollection. getHref()Returns the hypertext reference.ReferenceLink. getHref()Returns the link's IRI.ReferenceFeed. getIcon()Returns the image that provides iconic visual identification for a feed.ReferenceSource. getIcon()Returns the image that provides iconic visual identification for a feed.ReferenceFeed. getLogo()Returns the image that provides visual identification for a feed.ReferenceSource. getLogo()Returns the image that provides visual identification for a feed.ReferenceService. getReference()Returns the hypertext reference.ReferenceCategories. getScheme()Returns the scheme.ReferenceCategory. getScheme()Returns the scheme.ReferenceGenerator. getUri()Returns the reference of the generating agent.ReferencePerson. getUri()Returns the IRI associated with the person.ReferenceCollection. postMember(Representation member)Posts a member to the collection resulting in the creation of a new resource.Methods in org.restlet.ext.atom with parameters of type Reference Modifier and Type Method Description voidCategories. setBaseReference(Reference baseReference)Sets the base reference used to resolve relative references found within the scope of the xml:base attribute.voidCollection. setBaseReference(Reference baseReference)Sets the base reference used to resolve relative references found within the scope of the xml:base attribute.voidFeed. setBaseReference(Reference baseReference)Sets the base reference used to resolve relative references found within the scope of the xml:base attribute.voidService. setBaseReference(Reference baseReference)Sets the base reference used to resolve relative references found within the scope of the xml:base attribute.voidWorkspace. setBaseReference(Reference baseReference)Sets the base reference used to resolve relative references found within the scope of the xml:base attribute.voidContent. setExternalRef(Reference externalRef)Sets the reference to the external representation.voidCollection. setHref(Reference href)Sets the hypertext reference.voidLink. setHref(Reference href)Sets the link's IRI.voidFeed. setIcon(Reference icon)Sets the image that provides iconic visual identification for a feed.voidSource. setIcon(Reference icon)Sets the image that provides iconic visual identification for a feed.voidFeed. setLogo(Reference logo)Sets the image that provides visual identification for a feed.voidSource. setLogo(Reference logo)Sets the image that provides visual identification for a feed.voidService. setReference(Reference ref)Sets the hypertext reference.voidCategories. setScheme(Reference scheme)Sets the scheme.voidCategory. setScheme(Reference scheme)Sets the scheme.voidGenerator. setUri(Reference uri)Sets the reference of the generating agent.voidPerson. setUri(Reference uri)Sets the IRI associated with the person.Constructors in org.restlet.ext.atom with parameters of type Reference Constructor Description Category(java.lang.String label, Reference scheme, java.lang.String term)Constructor.Generator(java.lang.String name, Reference uri, java.lang.String version)Constructor.Link(Reference href, Relation rel, MediaType type)Constructor.Person(java.lang.String name, Reference uri, java.lang.String email)Constructor. -
Uses of Reference in org.restlet.ext.crypto
Fields in org.restlet.ext.crypto with type parameters of type Reference Modifier and Type Field Description private java.util.List<Reference>DigestAuthenticator. domainRefsThe URI references that define the protection domains.Methods in org.restlet.ext.crypto that return types with arguments of type Reference Modifier and Type Method Description java.util.List<Reference>DigestAuthenticator. getDomainRefs()Returns the base URI references that collectively define the protected domains for the digest authentication.Method parameters in org.restlet.ext.crypto with type arguments of type Reference Modifier and Type Method Description voidDigestAuthenticator. setDomainRefs(java.util.List<Reference> domainRefs)Sets the URI references that define the protection domains for the digest authentication.Constructor parameters in org.restlet.ext.crypto with type arguments of type Reference Constructor Description DigestAuthenticator(Context context, boolean optional, java.lang.String realm, java.util.List<Reference> domainRefs, java.lang.String serverKey)Constructor. -
Uses of Reference in org.restlet.ext.crypto.internal
Methods in org.restlet.ext.crypto.internal that return Reference Modifier and Type Method Description ReferenceHttpAwsQueryHelper. updateReference(Reference resourceRef, ChallengeResponse challengeResponse, Request request)Methods in org.restlet.ext.crypto.internal with parameters of type Reference Modifier and Type Method Description static java.lang.StringAwsUtils. getCanonicalizedResourceName(Reference reference)Returns the canonicalized resource name.private static java.lang.StringHttpAzureSharedKeyHelper. getCanonicalizedResourceName(Reference resourceRef)Returns the canonicalized resource name.private static java.lang.StringHttpAzureSharedKeyLiteHelper. getCanonicalizedResourceName(Reference resourceRef)Returns the canonicalized resource name.static java.lang.StringAwsUtils. getQuerySignature(Method method, Reference resourceRef, java.util.List<Parameter> params, char[] secret)Returns the AWS SimpleDB authentication compatible signature for the given request and secret.static java.lang.StringAwsUtils. getQueryStringToSign(Method method, Reference resourceRef, java.util.List<Parameter> params)Returns the SimpleDB string to sign.ReferenceHttpAwsQueryHelper. updateReference(Reference resourceRef, ChallengeResponse challengeResponse, Request request) -
Uses of Reference in org.restlet.ext.javamail
Methods in org.restlet.ext.javamail that return Reference Modifier and Type Method Description protected ReferenceTriggerResource. getMailRef(java.lang.String identifier)Deprecated.Returns the reference of a mail according to its identifier.protected ReferenceTriggerResource. getTargetRef(Resolver<java.lang.String> resolver)Deprecated.Returns the reference of the target according to the a list of properties. -
Uses of Reference in org.restlet.ext.jaxrs
Methods in org.restlet.ext.jaxrs with parameters of type Reference Modifier and Type Method Description static <T> TJaxRsClientResource. createJaxRsClient(Context context, Reference reference, java.lang.Class<? extends T> resourceInterface)Deprecated.Creates a client resource that proxy calls to the given Java interface into Restlet method calls.Constructors in org.restlet.ext.jaxrs with parameters of type Reference Constructor Description JaxRsClientResource(Context context, Reference reference)Deprecated. -
Uses of Reference in org.restlet.ext.jaxrs.internal.core
Fields in org.restlet.ext.jaxrs.internal.core declared as Reference Modifier and Type Field Description private ReferenceCallContext. referenceCutDeprecated.private ReferenceCallContext. referenceOriginalDeprecated.Methods in org.restlet.ext.jaxrs.internal.core with parameters of type Reference Modifier and Type Method Description private ExtendedUriBuilderCallContext. createExtendedUriBuilder(Reference ref)Deprecated.private javax.ws.rs.core.UriBuilderCallContext. createUriBuilder(Reference ref)Deprecated.private javax.ws.rs.core.UriBuilderCallContext. fillUriBuilder(Reference ref, javax.ws.rs.core.UriBuilder b)Deprecated. -
Uses of Reference in org.restlet.ext.jaxrs.internal.resteasy
Methods in org.restlet.ext.jaxrs.internal.resteasy with parameters of type Reference Modifier and Type Method Description static org.jboss.resteasy.spi.ResteasyUriInfoRestletHttpRequest. createUriInfo(Reference reference)Deprecated.Creates a RESTEasy URI info object. -
Uses of Reference in org.restlet.ext.nio.internal.request
Methods in org.restlet.ext.nio.internal.request that return Reference Modifier and Type Method Description ReferenceHttpInboundRequest. getReferrerRef()Deprecated.Returns the referrer reference if available. -
Uses of Reference in org.restlet.ext.rdf
Fields in org.restlet.ext.rdf declared as Reference Modifier and Type Field Description private ReferenceLiteral. datatypeRefThe optional datatype reference.private ReferenceLink. typeRefThe type URI reference.Methods in org.restlet.ext.rdf that return Reference Modifier and Type Method Description static ReferenceLink. createBlankRef(java.lang.String identifier)Creates a reference to a blank node.ReferenceLiteral. getDatatypeRef()Returns the optional datatype reference.private ReferenceGraph. getSourceAsReference(Reference sourceRef)Returns the source reference, either the one given in the sourceRef parameter or if it is null, the source reference of the default link.ReferenceLink. getSourceAsReference()Returns the source resource reference.private ReferenceGraph. getTargetAsReference(Reference targetRef)Returns the target reference, either the one given in the targetRef parameter or if it is null, the target reference of the default link.ReferenceLink. getTargetAsReference()Returns the target resource reference.private ReferenceGraph. getTypeRef(Reference typeRef)Returns the type reference, either the one given in the typeRef parameter or if it is null, the type reference of the default link.ReferenceLink. getTypeRef()Returns the type reference.Methods in org.restlet.ext.rdf that return types with arguments of type Reference Modifier and Type Method Description java.util.Set<Couple<Reference,Literal>>RdfClientResource. getLiterals()Returns all the linked literals, based on the RDF representation exposed.Methods in org.restlet.ext.rdf with parameters of type Reference Modifier and Type Method Description LinkGraph. add(java.lang.String sourceRef, java.lang.String typeRef, Reference targetRef)Creates then adds a link.LinkGraph. add(java.lang.String sourceRef, Reference typeRef, Reference targetRef)Creates then adds a link.LinkGraph. add(java.lang.String sourceRef, Reference typeRef, Literal targetLit)Creates then adds a link.LinkGraph. add(Reference sourceRef, java.lang.String typeRef, Reference targetRef)Creates then adds a link.LinkGraph. add(Reference sourceRef, java.lang.String typeRef, Literal targetLit)Creates then adds a link.LinkGraph. add(Reference sourceRef, Reference typeRef, Reference targetRef)Creates then adds a link.LinkGraph. add(Reference sourceRef, Reference typeRef, Literal targetLit)Creates then adds a link.LinkGraph. add(Graph sourceGraph, Reference typeRef, Reference targetRef)Creates then adds a link.LinkGraph. add(Graph sourceGraph, Reference typeRef, Literal targetLit)Creates then adds a link.private voidRdfRepresentation. discoverNamespaces(Reference reference, GraphHandler graphHandler)Updates the list of known namespaces of the XML writer for the given reference.java.util.Set<RdfClientResource>RdfClientResource. getLinked(Reference typeRef)Returns the linked resources, based on the RDF representation exposed.java.util.Set<Literal>RdfClientResource. getLiterals(Reference typeRef)Returns the linked literals, based on the RDF representation exposed.private ReferenceGraph. getSourceAsReference(Reference sourceRef)Returns the source reference, either the one given in the sourceRef parameter or if it is null, the source reference of the default link.private ReferenceGraph. getTargetAsReference(Reference targetRef)Returns the target reference, either the one given in the targetRef parameter or if it is null, the target reference of the default link.private ReferenceGraph. getTypeRef(Reference typeRef)Returns the type reference, either the one given in the typeRef parameter or if it is null, the type reference of the default link.static booleanLink. isBlankRef(Reference reference)Indicates if a reference is identifying a blank node.voidGraphBuilder. link(Reference source, Reference typeRef, Reference target)voidGraphBuilder. link(Reference source, Reference typeRef, Literal target)voidGraphBuilder. link(Graph source, Reference typeRef, Reference target)voidGraphBuilder. link(Graph source, Reference typeRef, Literal target)abstract voidGraphHandler. link(Reference source, Reference typeRef, Reference target)Callback method used when a link is parsed or written.abstract voidGraphHandler. link(Reference source, Reference typeRef, Literal target)Callback method used when a link is parsed or written.abstract voidGraphHandler. link(Graph source, Reference typeRef, Reference target)Callback method used when a link is parsed or written.abstract voidGraphHandler. link(Graph source, Reference typeRef, Literal target)Callback method used when a link is parsed or written.voidLiteral. setDatatypeRef(Reference datatypeRef)Sets the datatype reference.voidLink. setSource(Reference sourceRef)Sets the source resource reference.voidLink. setTarget(Reference targetRef)Sets the target as a resource reference.voidLink. setTypeRef(Reference typeRef)Sets the type reference.voidGraphHandler. startPrefixMapping(java.lang.String prefix, Reference reference)Callback method used at the start of a Namespace mapping.Method parameters in org.restlet.ext.rdf with type arguments of type Reference Modifier and Type Method Description java.util.Set<RdfClientResource>RdfClientResource. getLinked(java.util.Collection<Reference> typeRefs)Returns the linked resources, based on the RDF representation exposed.Constructors in org.restlet.ext.rdf with parameters of type Reference Constructor Description Link(java.lang.Object source, Reference typeRef, java.lang.Object target)Constructor.Link(Reference sourceRef, java.lang.String typeRef, Reference targetRef)Constructor.Link(Reference sourceRef, java.lang.String typeRef, Literal targetLit)Constructor.Link(Reference sourceRef, Reference typeRef, Reference targetRef)Constructor.Link(Reference sourceRef, Reference typeRef, Literal targetLit)Constructor.Link(Graph sourceGraph, java.lang.String typeRef, Reference targetRef)Constructor.Link(Graph sourceGraph, Reference typeRef, java.lang.Object target)Constructor.Link(Graph sourceGraph, Reference typeRef, Reference targetRef)Constructor.Link(Graph sourceGraph, Reference typeRef, Literal targetLit)Constructor.Literal(java.lang.String value, Reference datatypeRef)Constructor.Literal(java.lang.String value, Reference datatypeRef, Language language)Constructor.RdfClientResource(Context context, Method method, Reference reference)Constructor.RdfClientResource(Context context, Reference reference)Constructor.RdfClientResource(Method method, Reference reference)Constructor.RdfClientResource(Reference reference)Constructor. -
Uses of Reference in org.restlet.ext.rdf.internal
Fields in org.restlet.ext.rdf.internal declared as Reference Modifier and Type Field Description static ReferenceRdfConstants. LIST_FIRSTList "first".static ReferenceRdfConstants. LIST_RESTList "rest".static ReferenceRdfConstants. OBJECT_NILObject "nil".static ReferenceRdfConstants. PREDICATE_IMPLIESPredicate "implies" .static ReferenceRdfConstants. PREDICATE_OBJECTPredicate "object".static ReferenceRdfConstants. PREDICATE_PREDICATEPredicate "predicate".static ReferenceRdfConstants. PREDICATE_SAMEPredicate "same as".static ReferenceRdfConstants. PREDICATE_STATEMENTPredicate "statement".static ReferenceRdfConstants. PREDICATE_SUBJECTPredicate "subject".static ReferenceRdfConstants. PREDICATE_TYPEPredicate "is a".static ReferenceRdfConstants. RDF_SCHEMARdf schema.static ReferenceRdfConstants. RDF_SYNTAXRdf syntax.static ReferenceRdfConstants. XML_SCHEMAXML schema.static ReferenceRdfConstants. XML_SCHEMA_TYPE_FLOATFloat type of the XML schema.static ReferenceRdfConstants. XML_SCHEMA_TYPE_INTEGERInteger type of the XML schema. -
Uses of Reference in org.restlet.ext.rdf.internal.n3
Fields in org.restlet.ext.rdf.internal.n3 declared as Reference Modifier and Type Field Description private ReferenceRdfN3Writer. precPredicateThe preceding predicate used for factorization matter.private ReferenceRdfN3Writer. precSourceThe preceding source used for factorization matter.Methods in org.restlet.ext.rdf.internal.n3 that return Reference Modifier and Type Method Description private ReferenceRdfN3Reader. getPredicate(LexicalUnit lexicalUnit)Returns the given lexical unit as a predicate.Methods in org.restlet.ext.rdf.internal.n3 with parameters of type Reference Modifier and Type Method Description protected voidRdfN3Reader. link(java.lang.Object source, Reference typeRef, java.lang.Object target)Callback method used when a link is parsed or written.voidRdfN3Writer. link(Reference source, Reference typeRef, Reference target)voidRdfN3Writer. link(Reference source, Reference typeRef, Literal target)voidRdfN3Writer. link(Graph source, Reference typeRef, Reference target)voidRdfN3Writer. link(Graph source, Reference typeRef, Literal target)private voidRdfN3Writer. write(Reference reference, java.util.Map<java.lang.String,java.lang.String> prefixes)Writes the representation of a given reference. -
Uses of Reference in org.restlet.ext.rdf.internal.ntriples
Methods in org.restlet.ext.rdf.internal.ntriples with parameters of type Reference Modifier and Type Method Description voidRdfNTriplesWriter. link(Reference source, Reference typeRef, Reference target)voidRdfNTriplesWriter. link(Reference source, Reference typeRef, Literal target)voidRdfNTriplesWriter. link(Graph source, Reference typeRef, Reference target)voidRdfNTriplesWriter. link(Graph source, Reference typeRef, Literal target)private voidRdfNTriplesWriter. write(Reference reference)Writes the representation of a given reference. -
Uses of Reference in org.restlet.ext.rdf.internal.turtle
Fields in org.restlet.ext.rdf.internal.turtle declared as Reference Modifier and Type Field Description private ReferenceContext. baseThe value of the "base" keyword.private ReferenceRdfTurtleWriter. precPredicateThe preceding predicate used for factorization matter.private ReferenceRdfTurtleWriter. precSourceThe preceding source used for factorization matter.Methods in org.restlet.ext.rdf.internal.turtle that return Reference Modifier and Type Method Description ReferenceContext. getBase()Returns the base reference.private ReferenceRdfTurtleReader. getPredicate(LexicalUnit lexicalUnit)Returns the given lexical unit as a predicate.ReferenceContext. resolve(java.lang.String qname)Resolves a qualified name according to the current context.ReferenceUriToken. resolve()Methods in org.restlet.ext.rdf.internal.turtle with parameters of type Reference Modifier and Type Method Description protected voidRdfTurtleReader. link(java.lang.Object source, Reference typeRef, java.lang.Object target)Callback method used when a link is parsed or written.voidRdfTurtleWriter. link(Reference source, Reference typeRef, Reference target)voidRdfTurtleWriter. link(Reference source, Reference typeRef, Literal target)voidRdfTurtleWriter. link(Graph source, Reference typeRef, Reference target)voidRdfTurtleWriter. link(Graph source, Reference typeRef, Literal target)voidContext. setBase(Reference base)Sets the base reference.private voidRdfTurtleWriter. write(Reference reference, java.util.Map<java.lang.String,java.lang.String> prefixes)Writes the representation of a given reference. -
Uses of Reference in org.restlet.ext.rdf.internal.xml
Fields in org.restlet.ext.rdf.internal.xml declared as Reference Modifier and Type Field Description private ReferenceContentReader. currentPredicateCurrent predicate.private ReferenceRdfXmlWriter. lastSourceThe last source reference written, to try to factor statements.private ReferenceContentReader. reifiedRefUsed when a statement must be reified.Fields in org.restlet.ext.rdf.internal.xml with type parameters of type Reference Modifier and Type Field Description private ScopedProperty<Reference>ContentReader. baseThe value of the "base" URI.private java.util.List<Reference>ContentReader. subjectsHeap of subjects.Methods in org.restlet.ext.rdf.internal.xml that return Reference Modifier and Type Method Description private ReferenceContentReader. getCurrentSubject()Returns the subject at the top of the heap.private ReferenceContentReader. parseNode(java.lang.String uri, java.lang.String localName, java.lang.String name, org.xml.sax.Attributes attributes)Returns the RDF URI of the given node represented by its namespace uri, local name, name, and attributes.private ReferenceContentReader. popSubject()Returns the subject at the top of the heap and removes it from the heap.private ReferenceContentReader. resolve(java.lang.String value, boolean fragment)Returns the absolute reference for a given value.private ReferenceContentReader. resolve(java.lang.String uri, java.lang.String qName)Returns the absolute reference of a parsed element according to its URI, qualified name.Methods in org.restlet.ext.rdf.internal.xml with parameters of type Reference Modifier and Type Method Description private java.lang.StringRdfXmlWriter. getNamespace(Reference reference)Returns the namespace of the given reference.private java.lang.StringRdfXmlWriter. getPrefix(Reference ref)Returns the prefix of the qualified name representing the given reference.private voidContentReader. link(Reference subject, Reference predicate, Reference object)Creates a statement and reify it, if necessary.private voidContentReader. link(Reference subject, Reference predicate, Literal object)Creates a statement and reify it, if necessary.voidRdfXmlWriter. link(Reference source, Reference typeRef, Reference target)voidRdfXmlWriter. link(Reference source, Reference typeRef, Literal target)voidRdfXmlWriter. link(Graph source, Reference typeRef, Reference target)voidRdfXmlWriter. link(Graph source, Reference typeRef, Literal target)private voidContentReader. pushSubject(Reference subject)Adds a new subject at the top of the heap.voidRdfXmlWriter. startPrefixMapping(java.lang.String prefix, Reference reference)private voidRdfXmlWriter. writeNode(Reference reference, boolean subject)Writes a subject or object node. -
Uses of Reference in org.restlet.ext.wadl
Fields in org.restlet.ext.wadl declared as Reference Modifier and Type Field Description private ReferenceResourcesInfo. baseRefDeprecated.Base URI for each child resource identifier.private ReferenceWadlApplication. baseRefDeprecated.The WADL base reference.private ReferenceLinkInfo. resourceTypeDeprecated.Defines the capabilities of the resource that the link identifies.private ReferenceIncludeInfo. targetRefDeprecated.URI for the referenced definitions.private ReferenceMethodInfo. targetRefDeprecated.Reference to a method definition element.Fields in org.restlet.ext.wadl with type parameters of type Reference Modifier and Type Field Description private java.util.List<Reference>RepresentationInfo. profilesDeprecated.List of locations of one or more meta data profiles.private java.util.List<Reference>ResourceInfo. typeDeprecated.List of references to resource type elements.Methods in org.restlet.ext.wadl that return Reference Modifier and Type Method Description ReferenceResourcesInfo. getBaseRef()Deprecated.Returns the base URI for each child resource identifier.ReferenceWadlApplication. getBaseRef()Deprecated.Returns the WADL base reference.protected ReferenceWadlServerResource. getResourcesBase()Deprecated.Returns the application resources base URI.ReferenceLinkInfo. getResourceType()Deprecated.Returns the reference to the resource type of the linked resource.ReferenceIncludeInfo. getTargetRef()Deprecated.Returns the URI of the referenced definition.ReferenceMethodInfo. getTargetRef()Deprecated.Returns the reference to a method definition element.Methods in org.restlet.ext.wadl that return types with arguments of type Reference Modifier and Type Method Description java.util.List<Reference>RepresentationInfo. getProfiles()Deprecated.Returns the list of locations of one or more meta data profiles.java.util.List<Reference>ResourceInfo. getType()Deprecated.Returns the list of references to resource type elements.Methods in org.restlet.ext.wadl with parameters of type Reference Modifier and Type Method Description WadlApplicationWadlComponent. attach(Reference wadlRef)Deprecated.Attaches an application created from a WADL description document available at a given URI reference.voidResourcesInfo. setBaseRef(Reference baseRef)Deprecated.Sets the base URI for each child resource identifier.voidWadlApplication. setBaseRef(Reference baseRef)Deprecated.Sets the WADL base reference.voidLinkInfo. setResourceType(Reference resourceType)Deprecated.Sets the reference to the resource type of the linked resource.voidIncludeInfo. setTargetRef(Reference href)Deprecated.Sets the URI of the referenced definition.voidMethodInfo. setTargetRef(Reference targetRef)Deprecated.Sets the reference to a method definition element.Method parameters in org.restlet.ext.wadl with type arguments of type Reference Modifier and Type Method Description voidRepresentationInfo. setProfiles(java.util.List<Reference> profiles)Deprecated.Sets the list of locations of one or more meta data profiles.voidResourceInfo. setType(java.util.List<Reference> type)Deprecated.Sets the list of references to resource type elements.Constructors in org.restlet.ext.wadl with parameters of type Reference Constructor Description WadlComponent(Reference wadlRef)Deprecated.Constructor loading a WADL description document at a given URI.
The necessary client connectors are automatically created. -
Uses of Reference in org.restlet.representation
Fields in org.restlet.representation declared as Reference Modifier and Type Field Description private ReferenceVariant. locationRefThe location reference.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
Fields in org.restlet.resource declared as Reference Modifier and Type Field Description private ReferenceDirectory. rootRefThe absolute root reference (file, clap URI).Fields in org.restlet.resource with type parameters of type Reference Modifier and Type Field Description private java.util.Comparator<Reference>Directory. comparatorThe reference comparator to sort index pages.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 private java.lang.StringRedirector. getLocation(Reference locationRef, Request request)Computes the new location of the given reference, after applying the redirection template.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
Fields in org.restlet.service declared as Reference Modifier and Type Field Description private ReferenceStatusService. homeRefThe home URI to propose in case of error.private ReferenceLogService. logPropertiesRefThe URI reference of the log properties.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.
-