on the mongodb, how would I go about storing a hierarchical tree data in which each node contains a Java object containing it's own set of string variables and objects?
If there were no children, it would straight forward. but how would you store a child node DBobject as a field on the mongodb?
for example on a Jtree, if a user clicks and selects delete on a specific node, there should be some unique identifier that would correspond.
p.s. can I create a database for each user and let mongodb authenticate the user?