Package org.apache.tika.parser
Class CryptoParser
- java.lang.Object
- 
- org.apache.tika.parser.DelegatingParser
- 
- org.apache.tika.parser.CryptoParser
 
 
- 
- All Implemented Interfaces:
- Serializable,- Parser
 
 public abstract class CryptoParser extends DelegatingParser Decrypts the incoming document stream and delegates further parsing to another parser instance. The decryption key and other settings as well as the delegate parser are taken from the parsing context.- Since:
- Apache Tika 0.10
- See Also:
- Serialized Form
 
- 
- 
Constructor SummaryConstructors Constructor Description CryptoParser(String transformation, Provider provider, Set<MediaType> types)CryptoParser(String transformation, Set<MediaType> types)
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description Set<MediaType>getSupportedTypes(ParseContext context)Returns the set of media types supported by this parser when used with the given parse context.voidparse(InputStream stream, ContentHandler handler, Metadata metadata, ParseContext context)Looks up the delegate parser from the parsing context and delegates the parse operation to it.- 
Methods inherited from class org.apache.tika.parser.DelegatingParsergetDelegateParser
 
- 
 
- 
- 
- 
Method Detail- 
getSupportedTypespublic Set<MediaType> getSupportedTypes(ParseContext context) Description copied from interface:ParserReturns the set of media types supported by this parser when used with the given parse context.- Specified by:
- getSupportedTypesin interface- Parser
- Overrides:
- getSupportedTypesin class- DelegatingParser
- Parameters:
- context- parse context
- Returns:
- immutable set of media types
 
 - 
parsepublic void parse(InputStream stream, ContentHandler handler, Metadata metadata, ParseContext context) throws IOException, SAXException, TikaException Description copied from class:DelegatingParserLooks up the delegate parser from the parsing context and delegates the parse operation to it. If a delegate parser is not found, then an empty XHTML document is returned.Subclasses should override this method to parse the top level structure of the given document stream. Parsed sub-streams can be passed to this base class method to be parsed by the configured delegate parser. - Specified by:
- parsein interface- Parser
- Overrides:
- parsein class- DelegatingParser
- Parameters:
- stream- the document stream (input)
- handler- handler for the XHTML SAX events (output)
- metadata- document metadata (input and output)
- context- parse context
- Throws:
- IOException- if the document stream could not be read
- SAXException- if the SAX events could not be processed
- TikaException- if the document could not be parsed
 
 
- 
 
-