The collection-descriptor maps a collection attribute into JCR nodes or in a multivalue property. Based on our model defined here, the following collection-descriptor is used to map the "paragraphs" field into the JCR node called "paragraphs". {code} {code} The collection-descriptor contains the elementClassName attribute which specify the collection element class. A class descriptor for the element class has also to be defined. h2. The JCR Structure Following our example, the resulting JCR structure is: {code} /mysite/page1 /mysite/page1/paragraphs /mysite/page1/paragraphs/collection-element1 my:text = "This is the content of para1" /mysite/page1/paragraphs/collection-element2 my:text = "This is the content of para2" ... other subnodes for page1 ... {code} By default, the persistence manager will create a subnode (/mysite/page1/paragraphs). This one will contains the different paragraphs. As explained in the following sections, it is possible to map to another JCR structure. It is also possible to use another name for the jcr node names (see above). h2. Supported Collection and Map Types The OCM framework is supporting the following java types: * *Collections* Collection, List, Set, ArrayList, Vector, HashSet * *Maps* Map, HashMap h2. Using Another Collection or Map It is possible to support other Collection or Map types with the ManageableCollection interface. h2. Using Another Collection Converter TODO h2. Predefined Collection Converters TODO h2. Building your own Collection Converters TODO