Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRoberto E. Escobar2014-12-02 17:57:19 +0000
committerRyan T. Baldwin2014-12-02 17:57:19 +0000
commit136276945f20255e8fa32fd5f5a20f70623f73b9 (patch)
tree01fcd41aaed38514fb12a7416292ba9877c09a31 /plugins/org.eclipse.osee.ats.impl/OSGI-INF/ats.notification.service.xml
parent506af4a43c7d8ac306fd28ef12e40d4a4fcd768b (diff)
downloadorg.eclipse.osee-136276945f20255e8fa32fd5f5a20f70623f73b9.tar.gz
org.eclipse.osee-136276945f20255e8fa32fd5f5a20f70623f73b9.tar.xz
org.eclipse.osee-136276945f20255e8fa32fd5f5a20f70623f73b9.zip
bug: Fix AtsServer service circularity
Remove uses of OseeLog in server impl bundle Fix AtsServer service circularity issues Fix database conversion service issues Change-Id: I7620cdfaa1ee09d65cb59cc97709ed19446f6c6f
Diffstat (limited to 'plugins/org.eclipse.osee.ats.impl/OSGI-INF/ats.notification.service.xml')
-rw-r--r--plugins/org.eclipse.osee.ats.impl/OSGI-INF/ats.notification.service.xml3
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/org.eclipse.osee.ats.impl/OSGI-INF/ats.notification.service.xml b/plugins/org.eclipse.osee.ats.impl/OSGI-INF/ats.notification.service.xml
index 545f8ea2d86..a4af2edd14e 100644
--- a/plugins/org.eclipse.osee.ats.impl/OSGI-INF/ats.notification.service.xml
+++ b/plugins/org.eclipse.osee.ats.impl/OSGI-INF/ats.notification.service.xml
@@ -1,8 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.1.0">
<implementation class="org.eclipse.osee.ats.impl.internal.notify.AtsNotifierServiceImpl"/>
- <reference bind="setMailService" cardinality="1..1" interface="org.eclipse.osee.mail.api.MailService" name="MailService" policy="static"/>
<service>
<provide interface="org.eclipse.osee.ats.impl.internal.notify.IAtsNotifierServer"/>
</service>
+ <reference bind="setLogger" cardinality="1..1" interface="org.eclipse.osee.logger.Log" name="Log" policy="static"/>
+ <reference bind="setMailService" cardinality="1..1" interface="org.eclipse.osee.mail.api.MailService" name="MailService" policy="static"/>
</scr:component>

Back to the top