I was trying to use the suplied Java API JAR
to make a call to findNotes() where i want to retrieve all notes that pass the filter
so i wanted not to set the maxNotes or set it to the maximum possible
like this:
noteStore.findNotes(userAccessToken, filter, 0, maxNotes);
in the api docs it says the maxNotes must be between 0 and EDAM_USER_NOTES_MAX
but the Constants class only has the following static members
EDAM_NOTE_SOURCE_MAIL_CLIP
EDAM_NOTE_SOURCE_MAIL_SMTP_GATEWAY
EDAM_NOTE_SOURCE_WEB_CLIP
I've looked at the suplied source files and the Constants.java file does have all the constants
and i was able to get the number for EDAM_USER_NOTES_MAX from there.
I'm just writing this to inform you guys of this problem with the class in the JAR.












