Hi,
I have a DataProvider that implements IDataProvider, and for example in the
size method I need to call the service as follows:
public int size() {
return service.countAllByDomainObjectY(domainObjectY);
}
DomainObjectX contains a manytoone relationship with DomainObjectY.
So, this countAllByDomainObjectY internally searches by the domainObjectY's
id and returns the count of DomainObjectX associated with that specific
domainObjectY.
Now, in order to do this I would need to have domainObjectY as a property of
the DataProvider which I think it is not good because it would be
serialized.
Should I change the service to receive just the domainObjectY's id and only
"save" this id as a property of the DataProvider?
--
View this message in context:
http://apache-wicket.1842946.n4.nabble.com/DataProvider-calling-a-Service-Dao-that-requires-a-domain-object-tp3341572p3341572.html
Sent from the Users forum mailing list archive at Nabble.com.
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]