Skip to main content
summaryrefslogtreecommitdiffstats
blob: 9513053bc85fe869abf8b0185a57a85c70bd2a01 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
<?xml version="1.0" encoding="UTF-8"?>
<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.1.0" activate="start" deactivate="stop">
   <implementation class="org.eclipse.osee.orcs.db.internal.accessor.OseeInfoDataAccessor"/>
   <service>
      <provide interface="org.eclipse.osee.orcs.core.ds.KeyValueDataAccessor"/>
   </service>
   <property name="store.id" type="String" value="osee.system.preferences"/>
   <reference bind="setLogger" cardinality="1..1" interface="org.eclipse.osee.logger.Log" name="Log" policy="static"/>
   <reference bind="setJdbcService" cardinality="1..1" interface="org.eclipse.osee.jdbc.JdbcService" name="JdbcService" policy="static" target="(osgi.binding=orcs.jdbc.service)"/>
</scr:component>

Back to the top