Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: e80c1fd1fc5ac9dcf0be598ec574fa3180f978c8 (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
<?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
lex
listimports
lim
unexport
une
unimport
uni
rsadebug
rsexport
rsimport
   </property>
   <service>
      <provide interface="org.eclipse.ecf.osgi.services.remoteserviceadmin.console.RSACommand"/>
      <provide interface="org.apache.felix.service.command.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