Hi.
I would like to help implement the following features in castor jdo if it doesn't exist. Can someone point in the right direction?

1) Lazyload maps.
<field name="webResourcesMap" type="com.opendemand.jdo.WebResource" collection="map" lazy="true" >
           <sql many-key="user_scenario_id" />
       </field>
key- indentity field for com.opendemand.jdo.WebResource
value com.opendemand.jdo.WebResource

2) Lazyload a list.
<field name="requestHeaders" type="com.opendemand.jdo.RequestHeader" collection="list" lazy="true">
           <sql many-key="web_resource_id" />
       </field>

3) Store map entries with a configureable key
e.g.
<field name="remoteMonitorsMap" type="com.opendemand.jdo.RemoteMonitor"
           key="hostname"
           collection="map">
           <sql many-key="test_run_id" />
       </field>
key - hostname is a com.opendemand.jdo.RemoteMonitor field.

Steve


---------------------------------------------------------------------
To unsubscribe from this list please visit:

   http://xircles.codehaus.org/manage_email

Reply via email to