You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@maven.apache.org by ne...@imail.de on 2007/06/02 23:23:34 UTC

isXX vs getXX

Hello,
similar as plug-in from: http://fisheye5.cenqua.com/browse/~raw,r=1.1/jaxb2-commons/www/boolean-getter/index.html
does
I have the following problem:
Oracle SOA-OC4J expects getXX method to perform data binding
and JAXB uses isXX. and I use Maven to compile/deploy services  
Is there similar funcional solution for Maven/Jaxb/OC4J?

Thanks
Ned

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org


Re: isXX vs getXX

Posted by Bob Allison <SW...@columbus.rr.com>.
I do not know much about the requirements of Oracle SOA compared to JAXB, 
but could you do the following:

public boolean getAttribute()  {
   return isAttribute();
}

public boolean isAttribute()  {
   return attribute;
}

----- Original Message ----- 
From: <ne...@imail.de>
To: <us...@maven.apache.org>
Sent: Saturday, June 02, 2007 5:23 PM
Subject: isXX vs getXX


> Hello,
> similar as plug-in from: 
> http://fisheye5.cenqua.com/browse/~raw,r=1.1/jaxb2-commons/www/boolean-getter/index.html
> does
> I have the following problem:
> Oracle SOA-OC4J expects getXX method to perform data binding
> and JAXB uses isXX. and I use Maven to compile/deploy services
> Is there similar funcional solution for Maven/Jaxb/OC4J?
>
> Thanks
> Ned
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> For additional commands, e-mail: users-help@maven.apache.org
> 



---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org