Hi,
 
I am trying to efficiently use a ValueObject. As I am a 30% newbie, I am pretty sure that I am doing something wrong.
 
On the object-level, I declare:
 

...
*
@ejb.value-
object
* name =
"RealEstateDataAll"
* match =
"*"
...

That procucet the class for me. Works.

In my CMP bean, I include methods (tried several different declarations):

/**
* @ejb.interface-
method
* @ejb.value-
object
*/
public
abstract RealEstateDataAllValue getRealEstateEntryValue();

/**
* @ejb.interface-
method
* @ejb.value-
object
*/
public
abstract void setRealEstateEntryValue( RealEstateDataAllValue par );

I would expect to get the valueObject out of the getter. But it does not do that.

What else do I have to do, to work with the ValueObject??

 

Thanks for your help.

Klaus

Reply via email to