Skip to main content
summaryrefslogtreecommitdiffstats
blob: 12952fd82f287347ce5249fc77877dc25bad2bc7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?xml version="1.0" encoding="UTF-8"?>
<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.1.0" activate="start" deactivate="stop" name="org.eclipse.osee.ote.jms.ClientSideConnectionNodeLifecycleController">
   <implementation class="org.eclipse.osee.ote.jms.internal.ClientSideConnectionNodeLifecycleController"/>
      <reference bind="setClientService"
			  cardinality="1..1"
			  interface="org.eclipse.osee.ote.service.IOteClientService"
			  name="IOteClientService"
			  policy="dynamic"/>
   <reference bind="setMessageService"
			  cardinality="1..1"
			  interface="org.eclipse.osee.framework.messaging.MessageService"
			  name="MessageService"
			  policy="dynamic"/>
   <reference bind="bindOteUdpEndpoint" cardinality="1..1" interface="org.eclipse.osee.ote.endpoint.OteUdpEndpoint" name="OteUdpEndpoint" policy="dynamic"/>
</scr:component>

Back to the top