On Mon, Aug 24, 2009 at 10:36 AM, Shmuel Coller<[email protected]> wrote: > I remain with a question on SDO 2.1 JAVA implementation by Tuscany. > > How can this code be reused if one wants to plug-in a bridge to a > persistent storage ? > > > > In other words - is there TUSCANY documentation or pointers to those "low > level features" you mention? Can anyone please enlist a set of Tuscany SDO > JAVA classes where one should look for pluging-in a bridge to persistence? > >
Have you looked at the current DAS code yet [1] ? We have a DASFactory [2] that is responsible to instantiate a concrete DAS implementation based on the DAS Interface. In Tuscany, we currently have a DAS RDB implementation, and a experimental LDAP implementation, and in the past we have had a Fluid DAS (based on OpenJPA). In your case, to plug a custom DAS, you will need to provide a implementation of DASFactory and DAS interfaces at minimum, Also, Overall Tuscany DAS documentation is available at [3]. [1] https://svn.apache.org/repos/asf/tuscany/java/das/rdb/ [2] https://svn.apache.org/repos/asf/tuscany/java/das/rdb/src/main/java/org/apache/tuscany/das/rdb/ [3] http://tuscany.apache.org/das-overview.html -- Luciano Resende http://people.apache.org/~lresende http://lresende.blogspot.com/
