1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <!--
- Licensed Materials - Property of IBM
- IBM Cognos Products: disp
- (C) Copyright IBM Corp. 2003, 2012
- US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
- -->
- <service name="osgiLauncher" class="com.cognos.pogo.services.DefaultHandlerService" loadPriority="-15" logStartStop="true">
- <prerequisites>
- <prerequisite systemPropertyBool="com.ibm.cognos.pogo.osgi"/>
- </prerequisites>
- <handlers>
- <handler name="OSGiHandler" classname="com.cognos.pogo.osgi.launcher.OsgiHandler">
- <configuration>
- <item>
- <name>osgi.clean</name>
- <value>true</value>
- </item>
- <!-- Pass in configuration options here. -->
- <item>
- <name>osgi.console</name>
- <value></value>
- </item>
- <item>
- <name>osgi.debug</name>
- <value></value>
- </item>
- <!-- -->
- </configuration>
- </handler>
- <handler name="BundleFileListInstallerHandler" classname="com.cognos.pogo.osgi.launcher.BundleFileListInstallerHandler" directory="eclipse/plugins">
- <bundles>
- <bundle>org.eclipse.equinox.ds_</bundle>
- <bundle>org.eclipse.equinox.event_</bundle>
- <bundle>org.eclipse.equinox.util_</bundle>
- <bundle>org.eclipse.osgi.services_</bundle>
- <bundle>org.eclipse.osgi.util_</bundle>
- <bundle>org.eclipse.equinox.cm_</bundle>
- <bundle>javax.xml_</bundle>
- </bundles>
- </handler>
- <handler name="bundlewatcher" classname="com.cognos.pogo.osgi.launcher.BundleDirectoryWatcherHandler" directory="c10bundles/plugins"/>
- </handlers>
- </service>
|