deprecated indexArtifact

This commit is contained in:
Kelly Kelly 2019-07-26 10:41:32 -04:00
parent d2a923ac4b
commit b95009bc15

View File

@ -48,13 +48,19 @@ public interface KeywordSearchService extends Closeable {
* all of its attributes.
*
* @param artifact The artifact to index.
*
* @deprecated postArtifact org.sleuthkit.autopsy.datamodel.Blackboard will
* take care of this functionality at ingest
*
* @throws org.sleuthkit.datamodel.TskCoreException
*/
@Deprecated
public void indexArtifact(BlackboardArtifact artifact) throws TskCoreException;
/**
* Add the given Content object to the text index.
* Add the given Content object to the text index. This message should only
* be used in atypical cases, such as indexing a report. Artifacts are indexed
* when postArtifact called and files are indexed during ingest.
*
* @param content The content to index.
*