using iText I am able to get a list of annotations of a PDF. It seems that even replies are annotations themselves.
Extracting them, I look at the contents of the PdfDictionary using this
Set<PdfName> keys = annot.getKeys();
for (PdfName key : keys) {
System.out.println(key + "," + dictionary.get(key));
}
However, I cannot pinpoint which PdfName I need to use in order to identify replies belong to that certain annotation.