Interface ExtractDAO

    • Method Detail

      • getDumpByDocumentId

        Dump getDumpByDocumentId​(java.lang.String documentId)
        Returns a Dump for the given document id
        Parameters:
        documentId - the document id
        Returns:
        a Dump
      • getFieldsByDocumentId

        java.util.List<Fields> getFieldsByDocumentId​(java.lang.String documentId)
        Returns all Fields with the given document id.
        Parameters:
        documentId - the document id.
        Returns:
        a List of Fields
      • saveDump

        Dump saveDump​(Dump dump)
        Persists the given item to the underlying datasource.
        Parameters:
        dump - the item to save
        Returns:
        the saved Dump
      • deleteDump

        void deleteDump​(java.lang.String documentId)
        Removes a Dump from the underlying datasource for the given document id.
        Parameters:
        documentId - the document id
      • saveField

        Fields saveField​(Fields field)
        Persists the given item to the underlying datasource.
        Parameters:
        field - the item to save
        Returns:
        the saved Fields