Class AbstractRequestContext

    • Method Detail

      • getAbdera

        public org.apache.abdera.Abdera getAbdera()
        Deprecated.
        Description copied from interface: RequestContext
        Get the Abdera instance associated with this request
        Specified by:
        getAbdera in interface RequestContext
      • getDocument

        public <T extends org.apache.abdera.model.Element> org.apache.abdera.model.Document<T> getDocument()
                                                                                                    throws org.apache.abdera.parser.ParseException,
                                                                                                           IOException
        Deprecated.
        Description copied from interface: RequestContext
        Use the Abdera Parser to parse the request entity as an XML document
        Specified by:
        getDocument in interface RequestContext
        Throws:
        org.apache.abdera.parser.ParseException
        IOException
      • getDocument

        public <T extends org.apache.abdera.model.Element> org.apache.abdera.model.Document<T> getDocument​(org.apache.abdera.parser.Parser parser)
                                                                                                    throws org.apache.abdera.parser.ParseException,
                                                                                                           IOException
        Deprecated.
        Description copied from interface: RequestContext
        Use the Abdera Parser to parse the request entity as an XML document
        Specified by:
        getDocument in interface RequestContext
        Throws:
        org.apache.abdera.parser.ParseException
        IOException
      • getDocument

        public <T extends org.apache.abdera.model.Element> org.apache.abdera.model.Document<T> getDocument​(org.apache.abdera.parser.ParserOptions options)
                                                                                                    throws org.apache.abdera.parser.ParseException,
                                                                                                           IOException
        Deprecated.
        Description copied from interface: RequestContext
        Use the Abdera Parser to parse the request entity as an XML document
        Specified by:
        getDocument in interface RequestContext
        Throws:
        org.apache.abdera.parser.ParseException
        IOException
      • getDocument

        public <T extends org.apache.abdera.model.Element> org.apache.abdera.model.Document<T> getDocument​(org.apache.abdera.parser.Parser parser,
                                                                                                           org.apache.abdera.parser.ParserOptions options)
                                                                                                    throws org.apache.abdera.parser.ParseException,
                                                                                                           IOException
        Deprecated.
        Description copied from interface: RequestContext
        Use the Abdera Parser to parse the request entity as an XML document
        Specified by:
        getDocument in interface RequestContext
        Throws:
        org.apache.abdera.parser.ParseException
        IOException
      • getBaseUri

        public org.apache.abdera.i18n.iri.IRI getBaseUri()
        Deprecated.
        Description copied from interface: RequestContext
        Get the absolute base URI ... this is the request URI up to the Context Path of the web application within which the Abdera Servlet is deployed
        Specified by:
        getBaseUri in interface RequestContext
      • getResolvedUri

        public org.apache.abdera.i18n.iri.IRI getResolvedUri()
        Deprecated.
        Description copied from interface: RequestContext
        Get the absolute request URI (includes server name, port, etc)
        Specified by:
        getResolvedUri in interface RequestContext
      • getUri

        public org.apache.abdera.i18n.iri.IRI getUri()
        Deprecated.
        Description copied from interface: RequestContext
        Get the request URI
        Specified by:
        getUri in interface RequestContext
      • getTargetPath

        public String getTargetPath()
        Deprecated.
        Description copied from interface: RequestContext
        Returns the subset of the request URI that is to be used to resolve the Target (everything after the context path)
        Specified by:
        getTargetPath in interface RequestContext
      • absoluteUrlFor

        public String absoluteUrlFor​(Object key,
                                     Object param)
        Deprecated.
        Description copied from interface: RequestContext
        Construct an absolute URL using the Provider's Target Builder. Relative URL's are resolved against the base URI
        Specified by:
        absoluteUrlFor in interface RequestContext