Method signature of AbstractEntityCollectionAdapter.postEntry say:
public abstract T postEntry(String title,
IRI id,
String summary,
Date updated,
List<Person> authors,
Content content,
RequestContext request) throws
ResponseContextException;
It doesn't give access to Entry extensions like in-reply-to. Am I supposed
to use AbstractCollectionAdapter.getEntryFromRequest to get the original
Entry object and then access Entry.getExtension()?
I tend to believe that this is a right approach, as
CollectionAdapter.getEntry API signature says:
ResponseContext getEntry(RequestContext request);
However, I want to know if anybody knows of a better way. Thanks in advance.
Thanks.
-A.