Are you not looking for an API like this :
ocm.getObjects(String pattern);
Otherwise, you are welcome to make a proposal in Jira.
br,
Christophe
On Nov 14, 2007 5:49 AM, Kaizer <Kaiz...@mastek.com> wrote:
Hi,
In that case, how can i retrieve a collection of objects of the same type
stored under the same path as there is no API provided by the
ObjectContentManager to get objects under a path? There is an api to
retrieve only a single object by path. If I have stored say, 10 "Page"
objects under "some/test", the path I will give while querying should be
some/test and not its parent node "some", as that is the actual path that
under which the object is stored. Also, I may have another node under
"some", which is a sibling of "test" and which also stores "Page" objects.
In this case, i would get the objects under this node as well rather than
only under "test".
On Nov 13, 2007 10:45 AM, Kaizer <Kaiz...@mastek.com> wrote:
/jcr:root/some//test//element(*, ocm:page)
it doesnt work.
because you have not ocm:page nodes under some/test.
If I understand correctly how JCR is making queries, this expression
will
not select the node /some/test. It will check only his descendants.