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);
 }
Esempio n. 10
0
 public Note updateNote(Note note)
     throws EDAMUserException, EDAMSystemException, EDAMNotFoundException, TException {
   return mClient.updateNote(mAuthenticationToken, note);
 }
Esempio n. 11
0
 public List<String> getNoteTagNames(String guid)
     throws EDAMUserException, EDAMSystemException, EDAMNotFoundException, TException {
   return mClient.getNoteTagNames(mAuthenticationToken, guid);
 }
Esempio n. 12
0
 public NoteList findNotes(NoteFilter filter, int offset, int maxNotes)
     throws EDAMUserException, EDAMSystemException, EDAMNotFoundException, TException {
   return mClient.findNotes(mAuthenticationToken, filter, offset, maxNotes);
 }
Esempio n. 13
0
 public Note copyNote(String noteGuid, String toNotebookGuid)
     throws EDAMUserException, EDAMSystemException, EDAMNotFoundException, TException {
   return mClient.copyNote(mAuthenticationToken, noteGuid, toNotebookGuid);
 }
Esempio n. 14
0
 public SyncState getSyncState() throws EDAMUserException, EDAMSystemException, TException {
   return mClient.getSyncState(mAuthenticationToken);
 }
Esempio n. 15
0
 public int setNoteApplicationDataEntry(String guid, String key, String value)
     throws EDAMUserException, EDAMSystemException, EDAMNotFoundException, TException {
   return mClient.setNoteApplicationDataEntry(mAuthenticationToken, guid, key, value);
 }
Esempio n. 16
0
 public NoteCollectionCounts findNoteCounts(NoteFilter filter, boolean withTrash)
     throws EDAMUserException, EDAMSystemException, EDAMNotFoundException, TException {
   return mClient.findNoteCounts(mAuthenticationToken, filter, withTrash);
 }
Esempio n. 17
0
  public NotesMetadataList findNotesMetadata(
      NoteFilter filter, int offset, int maxNotes, NotesMetadataResultSpec resultSpec)
      throws EDAMUserException, EDAMSystemException, EDAMNotFoundException, TException {

    return mClient.findNotesMetadata(mAuthenticationToken, filter, offset, maxNotes, resultSpec);
  }
Esempio n. 18
0
 public int findNoteOffset(NoteFilter filter, String guid)
     throws EDAMUserException, EDAMSystemException, EDAMNotFoundException, TException {
   return mClient.findNoteOffset(mAuthenticationToken, filter, guid);
 }
Esempio n. 19
0
 public int expungeNotes(List<String> noteGuids)
     throws EDAMUserException, EDAMSystemException, EDAMNotFoundException, TException {
   return mClient.expungeNotes(mAuthenticationToken, noteGuids);
 }
Esempio n. 20
0
 public LazyMap getResourceApplicationData(String guid)
     throws EDAMUserException, EDAMSystemException, EDAMNotFoundException, TException {
   return mClient.getResourceApplicationData(mAuthenticationToken, guid);
 }
Esempio n. 21
0
 public int expungeInactiveNotes() throws EDAMUserException, EDAMSystemException, TException {
   return mClient.expungeInactiveNotes(mAuthenticationToken);
 }
Esempio n. 22
0
 public int unsetResourceApplicationDataEntry(String guid, String key)
     throws EDAMUserException, EDAMSystemException, EDAMNotFoundException, TException {
   return mClient.unsetResourceApplicationDataEntry(mAuthenticationToken, guid, key);
 }
Esempio n. 23
0
 public List<NoteVersionId> listNoteVersions(String noteGuid)
     throws EDAMUserException, EDAMSystemException, EDAMNotFoundException, TException {
   return mClient.listNoteVersions(mAuthenticationToken, noteGuid);
 }
Esempio n. 24
0
 public SavedSearch createSearch(SavedSearch search)
     throws EDAMUserException, EDAMSystemException, TException {
   return mClient.createSearch(mAuthenticationToken, search);
 }
Esempio n. 25
0
 public String getNoteContent(String guid)
     throws EDAMUserException, EDAMSystemException, EDAMNotFoundException, TException {
   return mClient.getNoteContent(mAuthenticationToken, guid);
 }
Esempio n. 26
0
 public int updateSearch(SavedSearch search)
     throws EDAMUserException, EDAMSystemException, EDAMNotFoundException, TException {
   return mClient.updateSearch(mAuthenticationToken, search);
 }
Esempio n. 27
0
 public SyncChunk getSyncChunk(int afterUSN, int maxEntries, boolean fullSyncOnly)
     throws EDAMUserException, EDAMSystemException, TException {
   return mClient.getSyncChunk(mAuthenticationToken, afterUSN, maxEntries, fullSyncOnly);
 }
Esempio n. 28
0
 public String getNoteSearchText(String guid, boolean noteOnly, boolean tokenizeForIndexing)
     throws EDAMUserException, EDAMSystemException, EDAMNotFoundException, TException {
   return mClient.getNoteSearchText(mAuthenticationToken, guid, noteOnly, tokenizeForIndexing);
 }
Esempio n. 29
0
 public int updateResource(Resource resource)
     throws EDAMUserException, EDAMSystemException, EDAMNotFoundException, TException {
   return mClient.updateResource(mAuthenticationToken, resource);
 }
Esempio n. 30
0
 public String getResourceSearchText(String guid)
     throws EDAMUserException, EDAMSystemException, EDAMNotFoundException, TException {
   return mClient.getResourceSearchText(mAuthenticationToken, guid);
 }