public SyncChunk getLinkedNotebookSyncChunk( LinkedNotebook linkedNotebook, int afterUSN, int maxEntries, boolean fullSyncOnly) throws EDAMUserException, EDAMSystemException, EDAMNotFoundException, TException { return mClient.getLinkedNotebookSyncChunk( mAuthenticationToken, linkedNotebook, afterUSN, maxEntries, fullSyncOnly); }
public int setSharedNotebookRecipientSettings( long sharedNotebookId, SharedNotebookRecipientSettings recipientSettings) throws EDAMUserException, EDAMNotFoundException, EDAMSystemException, TException { return mClient.setSharedNotebookRecipientSettings( mAuthenticationToken, sharedNotebookId, recipientSettings); }
public int sendMessageToSharedNotebookMembers( String notebookGuid, String messageText, List<String> recipients) throws EDAMUserException, EDAMNotFoundException, EDAMSystemException, TException { return mClient.sendMessageToSharedNotebookMembers( mAuthenticationToken, notebookGuid, messageText, recipients); }
public Resource getResource( String guid, boolean withData, boolean withRecognition, boolean withAttributes, boolean withAlternateData) throws EDAMUserException, EDAMSystemException, EDAMNotFoundException, TException { return mClient.getResource( mAuthenticationToken, guid, withData, withRecognition, withAttributes, withAlternateData); }
public Resource getResourceByHash( String noteGuid, byte[] contentHash, boolean withData, boolean withRecognition, boolean withAlternateData) throws EDAMUserException, EDAMSystemException, EDAMNotFoundException, TException { return mClient.getResourceByHash( mAuthenticationToken, noteGuid, contentHash, withData, withRecognition, withAlternateData); }
public Note getNoteVersion( String noteGuid, int updateSequenceNum, boolean withResourcesData, boolean withResourcesRecognition, boolean withResourcesAlternateData) throws EDAMUserException, EDAMSystemException, EDAMNotFoundException, TException { return mClient.getNoteVersion( mAuthenticationToken, noteGuid, updateSequenceNum, withResourcesData, withResourcesRecognition, withResourcesAlternateData); }
public Note getNote( String guid, boolean withContent, boolean withResourcesData, boolean withResourcesRecognition, boolean withResourcesAlternateData) throws EDAMUserException, EDAMSystemException, EDAMNotFoundException, TException { return mClient.getNote( mAuthenticationToken, guid, withContent, withResourcesData, withResourcesRecognition, withResourcesAlternateData); }
public SyncState getSyncStateWithMetrics(ClientUsageMetrics clientMetrics) throws EDAMUserException, EDAMSystemException, TException { return mClient.getSyncStateWithMetrics(mAuthenticationToken, clientMetrics); }
public int expungeNote(String guid) throws EDAMUserException, EDAMSystemException, EDAMNotFoundException, TException { return mClient.expungeNote(mAuthenticationToken, guid); }
public Note updateNote(Note note) throws EDAMUserException, EDAMSystemException, EDAMNotFoundException, TException { return mClient.updateNote(mAuthenticationToken, note); }
public List<String> getNoteTagNames(String guid) throws EDAMUserException, EDAMSystemException, EDAMNotFoundException, TException { return mClient.getNoteTagNames(mAuthenticationToken, guid); }
public NoteList findNotes(NoteFilter filter, int offset, int maxNotes) throws EDAMUserException, EDAMSystemException, EDAMNotFoundException, TException { return mClient.findNotes(mAuthenticationToken, filter, offset, maxNotes); }
public Note copyNote(String noteGuid, String toNotebookGuid) throws EDAMUserException, EDAMSystemException, EDAMNotFoundException, TException { return mClient.copyNote(mAuthenticationToken, noteGuid, toNotebookGuid); }
public SyncState getSyncState() throws EDAMUserException, EDAMSystemException, TException { return mClient.getSyncState(mAuthenticationToken); }
public int setNoteApplicationDataEntry(String guid, String key, String value) throws EDAMUserException, EDAMSystemException, EDAMNotFoundException, TException { return mClient.setNoteApplicationDataEntry(mAuthenticationToken, guid, key, value); }
public NoteCollectionCounts findNoteCounts(NoteFilter filter, boolean withTrash) throws EDAMUserException, EDAMSystemException, EDAMNotFoundException, TException { return mClient.findNoteCounts(mAuthenticationToken, filter, withTrash); }
public NotesMetadataList findNotesMetadata( NoteFilter filter, int offset, int maxNotes, NotesMetadataResultSpec resultSpec) throws EDAMUserException, EDAMSystemException, EDAMNotFoundException, TException { return mClient.findNotesMetadata(mAuthenticationToken, filter, offset, maxNotes, resultSpec); }
public int findNoteOffset(NoteFilter filter, String guid) throws EDAMUserException, EDAMSystemException, EDAMNotFoundException, TException { return mClient.findNoteOffset(mAuthenticationToken, filter, guid); }
public int expungeNotes(List<String> noteGuids) throws EDAMUserException, EDAMSystemException, EDAMNotFoundException, TException { return mClient.expungeNotes(mAuthenticationToken, noteGuids); }
public LazyMap getResourceApplicationData(String guid) throws EDAMUserException, EDAMSystemException, EDAMNotFoundException, TException { return mClient.getResourceApplicationData(mAuthenticationToken, guid); }
public int expungeInactiveNotes() throws EDAMUserException, EDAMSystemException, TException { return mClient.expungeInactiveNotes(mAuthenticationToken); }
public int unsetResourceApplicationDataEntry(String guid, String key) throws EDAMUserException, EDAMSystemException, EDAMNotFoundException, TException { return mClient.unsetResourceApplicationDataEntry(mAuthenticationToken, guid, key); }
public List<NoteVersionId> listNoteVersions(String noteGuid) throws EDAMUserException, EDAMSystemException, EDAMNotFoundException, TException { return mClient.listNoteVersions(mAuthenticationToken, noteGuid); }
public SavedSearch createSearch(SavedSearch search) throws EDAMUserException, EDAMSystemException, TException { return mClient.createSearch(mAuthenticationToken, search); }
public String getNoteContent(String guid) throws EDAMUserException, EDAMSystemException, EDAMNotFoundException, TException { return mClient.getNoteContent(mAuthenticationToken, guid); }
public int updateSearch(SavedSearch search) throws EDAMUserException, EDAMSystemException, EDAMNotFoundException, TException { return mClient.updateSearch(mAuthenticationToken, search); }
public SyncChunk getSyncChunk(int afterUSN, int maxEntries, boolean fullSyncOnly) throws EDAMUserException, EDAMSystemException, TException { return mClient.getSyncChunk(mAuthenticationToken, afterUSN, maxEntries, fullSyncOnly); }
public String getNoteSearchText(String guid, boolean noteOnly, boolean tokenizeForIndexing) throws EDAMUserException, EDAMSystemException, EDAMNotFoundException, TException { return mClient.getNoteSearchText(mAuthenticationToken, guid, noteOnly, tokenizeForIndexing); }
public int updateResource(Resource resource) throws EDAMUserException, EDAMSystemException, EDAMNotFoundException, TException { return mClient.updateResource(mAuthenticationToken, resource); }
public String getResourceSearchText(String guid) throws EDAMUserException, EDAMSystemException, EDAMNotFoundException, TException { return mClient.getResourceSearchText(mAuthenticationToken, guid); }