Skip to main content
summaryrefslogtreecommitdiffstats
blob: 358f1c380eca5895eebbc6584ea453d273968a10 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?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" immediate="true" name="org.eclipse.osee.vaadin.internal.ApplicationServletManager">
   <implementation class="org.eclipse.osee.vaadin.internal.ApplicationServletManager"/>

   <reference interface="org.osgi.service.http.HttpService" name="HttpService"  
    cardinality="1..1"  
    policy="static"
    bind="setHttpService" />
    
   <reference interface="org.eclipse.osee.logger.Log" name="Log" 
   	cardinality="1..1"  
   	policy="static" 
   	bind="setLogger" />
   	
    <reference interface="org.eclipse.osee.event.EventService" name="EventService" 
   	cardinality="1..1"  
   	policy="static" 
   	bind="setEventService" />
   
   <reference interface="org.eclipse.osee.vaadin.ApplicationFactory" name="ApplicationFactory" 
    cardinality="1..n" 
    policy="dynamic" 
    bind="addFactory" 
    unbind="removeFactory" />
    
</scr:component>

Back to the top