Skip to main content
summaryrefslogtreecommitdiffstats
blob: f0698c3fd318008be05f7b69797d279d81b1174e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?xml version="1.0" encoding="UTF-8"?>
<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.1.0" activate="start" deactivate="stop" enabled="true" name="org.eclipse.osee.mail.internal.MailServiceImpl">
   <implementation class="org.eclipse.osee.mail.internal.MailServiceImpl"/>
    
   <reference interface="org.eclipse.osee.event.EventService" name="EventService" 
   	cardinality="1..1"  
   	policy="static" 
   	bind="setEventService" />
   	
   <service>
      <provide interface="org.eclipse.osee.mail.MailService"/>
   </service>
    
</scr:component>

Back to the top