Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: d9589a13449f54391b0e57b869a4515f02167b82 (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
27
28
<?xml version="1.0" encoding="UTF-8"?>
<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.1.0" activate="activate" deactivate="deactivate" immediate="true" name="org.eclipse.ecf.osgi.services.remoteserviceadmin.console.RSACommand">
   <property name="osgi.command.scope" value="ecf"/>
   <property name="osgi.command.function">listexports
lexps
listimports
limps
unexportservice
unexpsvc
unimportservice
unimpsvc
rsadebug
exportservice
expsvc
importservice
impsvc
updateservice
updsvc
   </property>
   <service>
      <provide interface="org.eclipse.ecf.osgi.services.remoteserviceadmin.console.RSACommand"/>
      <provide interface="Converter"/>
   </service>
   <reference bind="bindContainerManager" interface="org.eclipse.ecf.core.IContainerManager" name="ContainerManager" unbind="unbindContainerManager"/>
   <reference bind="bindIDFactory" interface="org.eclipse.ecf.core.identity.IIDFactory" name="IDFactory" unbind="unbindIDFactory"/>
   <reference bind="bindRSA" interface="org.osgi.service.remoteserviceadmin.RemoteServiceAdmin" name="RSA" unbind="unbindRSA"/>
   <implementation class="org.eclipse.ecf.osgi.services.remoteserviceadmin.console.RSACommand"/>
</scr:component>

Back to the top