Package io.writeopia.sdk.manager
Interface DocumentUpdate
-
- All Implemented Interfaces:
public interface DocumentUpdateRepository responsible for saving the document updates.
-
-
Method Summary
Modifier and Type Method Description abstract UnitsaveDocument(Document document)Saves the whole document abstract UnitsaveDocumentMetadata(Document document)Saves the meta data of the document. abstract UnitsaveStoryStep(StoryStep storyStep, Integer position, String documentId)Saves of StoryStep of a document abstract UnitupdateStoryStep(StoryStep storyStep, Integer position, String documentId)Updates one StoryStep of a document. -
-
Method Detail
-
saveDocument
abstract Unit saveDocument(Document document)
Saves the whole document
-
saveDocumentMetadata
abstract Unit saveDocumentMetadata(Document document)
Saves the meta data of the document. Content is not saved.
-
saveStoryStep
abstract Unit saveStoryStep(StoryStep storyStep, Integer position, String documentId)
Saves of StoryStep of a document
-
updateStoryStep
abstract Unit updateStoryStep(StoryStep storyStep, Integer position, String documentId)
Updates one StoryStep of a document.
-
-
-
-