I have a List in my object that is being mapped by @Collection. I am able to add and edit the collection properly. My question is because I set this up as a java.util.List, is there any way to preserve the ordering of the nodes in the collection?
Here is my field: @Collection(jcrElementName="page", elementClassName=Page.class, collectionConverter=NTCollectionConverterImpl.class) private List<Page> pages; I have a "priority" field on the Page object that I figure I could order by during queries, but I want the order to remain correct when I use getPages(). -- View this message in context: http://www.nabble.com/Preserve-order-of-OCM-%40Collection-tp21151759p21151759.html Sent from the Jackrabbit - Users mailing list archive at Nabble.com.
