Package org.sleuthkit.datamodel

Examples of org.sleuthkit.datamodel.AbstractContent


     * estimation
     * @throws IngesterException if there was an error processing a specific
     * file, but the Solr server is probably fine.
     */
    void ingest(AbstractFileChunk fec, ByteContentStream bcs, int size) throws IngesterException {
        AbstractContent sourceContent = bcs.getSourceContent();
        Map<String, String> params = getContentFields(sourceContent);

        //overwrite id with the chunk id
        params.put(Server.Schema.ID.toString(),
                Server.getChunkIdString(sourceContent.getId(), fec.getChunkId()));

        ingest(bcs, params, size);
    }
View Full Code Here

TOP

Related Classes of org.sleuthkit.datamodel.AbstractContent

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.