Re: [xwiki-users] Query in Java

2015-09-10 Thread vinc...@massol.net
Hi Peter,


On 10 Sep 2015 at 12:13:12, Peter Huisman 
(p.huis...@ximm.nl(mailto:p.huis...@ximm.nl)) wrote:

> Hi,
>  
> I’m looking for the return type for the following Query type in Java:
>  
> select doc.space, doc.name from XWikiDocument doc, BaseObject obj…
>  
> I know it should be some kind of List> since this is what works in Velocity 
> but I can’t do a typecast from List to List.
>  
> Can anyone help me on this?

I’ve added an example here 
http://extensions.xwiki.org/xwiki/bin/view/Extension/Query+Module#HFromJavacomponents

hope it helps,
-Vincent

> Br,
>  
> Peter

___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


[xwiki-users] Query in Java

2015-09-10 Thread Peter Huisman
Hi,

I’m looking for the return type for the following Query type in Java:

select doc.space, doc.name from XWikiDocument doc, BaseObject obj…

I know it should be some kind of List since this is what works in 
Velocity but I can’t do a typecast from List to List