Uses of Interface
org.apache.abdera.model.Document

Packages that use Document
org.apache.abdera.factory   
org.apache.abdera.model   
org.apache.abdera.parser   
org.apache.abdera.protocol.client   
org.apache.abdera.protocol.server   
org.apache.abdera.protocol.server.context   
org.apache.abdera.protocol.server.multipart   
org.apache.abdera.security   
 

Uses of Document in org.apache.abdera.factory
 

Methods in org.apache.abdera.factory that return Document
<T extends Element>
Document<T>
Factory.newDocument()
          Create a new Document instance with a root Element of type T.
 

Uses of Document in org.apache.abdera.model
 

Methods in org.apache.abdera.model that return Document
 Document<T> Document.addProcessingInstruction(String target, String value)
          Add a processing instruction to the document
 Document<T> Document.addStylesheet(String href, String media)
          Add a xml-stylesheet processing instruction to the document
<T extends Element>
Document<T>
ElementWrapper.getDocument()
           
<T extends Element>
Document<T>
Element.getDocument()
          Returns the document to which this element belongs
 Document<T> Document.setBaseUri(String base)
          Sets the Base URI of the document.
 Document<T> Document.setCharset(String charset)
          Sets the charset used for this document
 Document<T> Document.setContentType(String contentType)
          Sets the content type for this document
 Document<T> Document.setEntityTag(org.apache.abdera.util.EntityTag tag)
          Set the entity tag for this document
 Document<T> Document.setEntityTag(String tag)
          Set the entity tag for this document
 Document<T> Document.setLanguage(String lang)
          set the base language
 Document<T> Document.setLastModified(Date lastModified)
          Sets the last modified date for this document
 Document<T> Document.setMustPreserveWhitespace(boolean preserve)
          Set to true to preserve insignificant whitespace
 Document<T> Document.setRoot(T root)
          Sets the root element of the document
 Document<T> Document.setSlug(String slug)
          Set the slug for this document
 

Uses of Document in org.apache.abdera.parser
 

Methods in org.apache.abdera.parser that return Document
<T extends Element>
Document<T>
Parser.parse(InputStream in)
          Parse the input stream using the default character set encoding (UTF-8)
<T extends Element>
Document<T>
Parser.parse(InputStream in, ParserOptions options)
          Parse the input stream using the default character set encoding (UTF-8).
<T extends Element>
Document<T>
Parser.parse(InputStream in, String base)
          Parse the input stream using the default character set encoding (UTF-8).
<T extends Element>
Document<T>
Parser.parse(InputStream in, String base, ParserOptions options)
          Parse the input stream using using the specified Parse options.
<T extends Element>
Document<T>
Parser.parse(ReadableByteChannel buf)
          Parse the channel using using the specified Parse options.
<T extends Element>
Document<T>
Parser.parse(ReadableByteChannel buf, ParserOptions options)
          Parse the channel using using the specified Parse options.
<T extends Element>
Document<T>
Parser.parse(ReadableByteChannel buf, String base)
          Parse the channel using using the specified Parse options.
<T extends Element>
Document<T>
Parser.parse(ReadableByteChannel buf, String base, ParserOptions options)
          Parse the channel using using the specified Parse options.
<T extends Element>
Document<T>
Parser.parse(Reader in)
          Parse the reader using the default Base URI and options
<T extends Element>
Document<T>
Parser.parse(Reader in, ParserOptions options)
          Parse the reader using the specified Base URI
<T extends Element>
Document<T>
Parser.parse(Reader in, String base)
          Parse the reader using the specified Base URI
<T extends Element>
Document<T>
Parser.parse(Reader in, String base, ParserOptions options)
          Parse the reader using using the specified Parse options.
<T extends Element>
Document<T>
Parser.parse(javax.xml.stream.XMLStreamReader reader)
          Parse the input stream using the default character set encoding (UTF-8)
<T extends Element>
Document<T>
Parser.parse(javax.xml.stream.XMLStreamReader reader, String base, ParserOptions options)
          Parse the channel using using the specified Parse options.
 

Uses of Document in org.apache.abdera.protocol.client
 

Methods in org.apache.abdera.protocol.client that return Document
<T extends Element>
Document<T>
ClientResponse.getDocument()
          If the response contains an XML document, parse the document
<T extends Element>
Document<T>
AbstractClientResponse.getDocument()
          Get the response payload as a parsed Abdera FOM Document
<T extends Element>
Document<T>
ClientResponse.getDocument(Parser parser)
          If the response contains an XML document, parse the document using the specified Parser
<T extends Element>
Document<T>
AbstractClientResponse.getDocument(Parser parser)
          Get the response payload as a parsed Abdera FOM Document using the specified parser
<T extends Element>
Document<T>
ClientResponse.getDocument(ParserOptions options)
          If the response contains an XML document, parse the document using the specified ParserOptions
<T extends Element>
Document<T>
AbstractClientResponse.getDocument(ParserOptions options)
          Get the response payload as a parsed Abdera FOM Document using the specified parser options
<T extends Element>
Document<T>
ClientResponse.getDocument(Parser parser, ParserOptions options)
          If the response contains an XML document, parse the document using the specified Parser and ParserOptions
<T extends Element>
Document<T>
AbstractClientResponse.getDocument(Parser parser, ParserOptions options)
          Get the response payload as a parsed Abdera FOM Document using the specified parser and parser options
 

Uses of Document in org.apache.abdera.protocol.server
 

Methods in org.apache.abdera.protocol.server that return Document
<T extends Element>
Document<T>
RequestContext.getDocument()
          Use the Abdera Parser to parse the request entity as an XML document
<T extends Element>
Document<T>
RequestContext.getDocument(Parser parser)
          Use the Abdera Parser to parse the request entity as an XML document
<T extends Element>
Document<T>
RequestContext.getDocument(ParserOptions options)
          Use the Abdera Parser to parse the request entity as an XML document
<T extends Element>
Document<T>
RequestContext.getDocument(Parser parser, ParserOptions options)
          Use the Abdera Parser to parse the request entity as an XML document
 

Uses of Document in org.apache.abdera.protocol.server.context
 

Fields in org.apache.abdera.protocol.server.context declared as Document
protected  Document<?> AbstractRequestContext.document
           
 

Methods in org.apache.abdera.protocol.server.context that return Document
<T extends Element>
Document<T>
RequestContextWrapper.getDocument()
           
<T extends Element>
Document<T>
AbstractRequestContext.getDocument()
           
<T extends Element>
Document<T>
RequestContextWrapper.getDocument(Parser parser)
           
<T extends Element>
Document<T>
AbstractRequestContext.getDocument(Parser parser)
           
<T extends Element>
Document<T>
RequestContextWrapper.getDocument(ParserOptions options)
           
<T extends Element>
Document<T>
AbstractRequestContext.getDocument(ParserOptions options)
           
<T extends Element>
Document<T>
RequestContextWrapper.getDocument(Parser parser, ParserOptions options)
           
<T extends Element>
Document<T>
AbstractRequestContext.getDocument(Parser parser, ParserOptions options)
           
 

Uses of Document in org.apache.abdera.protocol.server.multipart
 

Methods in org.apache.abdera.protocol.server.multipart that return Document
 Document<Entry> AbstractMultipartCollectionAdapter.MultipartRelatedPost.getEntry()
           
 

Constructors in org.apache.abdera.protocol.server.multipart with parameters of type Document
AbstractMultipartCollectionAdapter.MultipartRelatedPost(Document<Entry> entry, InputStream data, Map<String,String> entryHeaders, Map<String,String> dataHeaders)
           
 

Uses of Document in org.apache.abdera.security
 

Methods in org.apache.abdera.security that return Document
 Document Encryption.decrypt(Document doc, EncryptionOptions options)
          Decrypt the document using the specified options
 Document Encryption.encrypt(Document doc, EncryptionOptions options)
          Encrypt the document using the specified options
 

Methods in org.apache.abdera.security with parameters of type Document
 Document Encryption.decrypt(Document doc, EncryptionOptions options)
          Decrypt the document using the specified options
 Document Encryption.encrypt(Document doc, EncryptionOptions options)
          Encrypt the document using the specified options
 boolean Encryption.isEncrypted(Document doc)
          Returns true if this specified document has been encrypted
 



Copyright © 2006-2010 Apache Software Foundation. All Rights Reserved.