All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.openprovenance.prov.template.log2prov.DocumentProcessor Maven / Gradle / Ivy

The newest version!
package org.openprovenance.prov.template.log2prov;

import org.openprovenance.prov.model.Document;

/** A streaming interface for a constructor of PROV Documents, which accumulates process statements by means of its process method. */

public interface DocumentProcessor {

    void process(Document make);
    
    Document getDocument();

    default void end() {};
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy