Ingest Replace

The Replace method is short-hand for performing a Remove followed by an Add. You can use this method when a document in a repository has been changed.

       DocInfo docInfo = task.docInfoBuilder().createDocInfo(
          "http://www.example.com/testDocument.doc",
          "testDocument.doc",
          true);
            
       Metadata metadata = docInfo.doc().metadata();  
       metadata.addField("MyField", "New Value");
       metadata.addField("SecondField", "Only one value now");

       task.ingester().replace(docInfo);

This example is very similar to the example for Ingest Add. It might be used in the synchronize action when testDocument.doc has been modified. In the ingestion target, both the content of the file and the metadata fields are replaced.