Hi,
so how is this entity mapped?
Andrus
On Jul 5, 2012, at 3:46 PM, Kanwar Manish wrote:
> Hi Guys
>
> The statement inside the try block is causing the issue. At the end - code
> from the object UserMaster is also copied.
>
> if ((username!=null) && (!loggedIn))
> {
> DataContext dc = blgetcontext.getDatacontext();
>
> logger.info(loginquery.toString());
> List ls = dc.performQuery(loginquery);
>
> if ((ls == null) || ls.isEmpty() || ls.size()<1)
> result = true;
> else
> {
> result = false;
> this.currentuser = ((UserMaster)ls.get(0));
> try
> {
> this.userid = this.currentuser.getUserMasterId();
> }
> catch(Exception ex)
> {
> String s = ex.getMessage();
> }
>
> }
> }
>
>
> Code for the UserMaster Object.....
>
> public UUID getUserMasterId() {
> return (UUID)readProperty("userMasterId");
> }
>
> Thanks for all the help.
> Cheers
> KM