aboutsummaryrefslogtreecommitdiffstats
path: root/sdnr/wireless-transport/code-Carbon-SR1/ux/mwtnLog/mwtnLog-bundle/src/main/resources/OSGI-INF/blueprint/blueprint.xml
blob: cf298447d3cc8469f469b5e45e65d8975d330860 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<blueprint xmlns="http://www.osgi.org/xmlns/blueprint/v1.0.0">
    <reference id="httpService" availability="mandatory" activation="eager" interface="org.osgi.service.http.HttpService"/>
    <reference id="loader" availability="mandatory" activation="eager" interface="org.opendaylight.dlux.loader.DluxModuleLoader"/>

    <bean id="bundle" init-method="initialize" destroy-method="clean" class="org.opendaylight.dlux.loader.DluxModule">
        <property name="httpService" ref="httpService"/>
        <property name="loader" ref="loader"/>
        <property name="moduleName" value="mwtnLog"/>
        <property name="url" value="/src/app/mwtnLog"/>
        <property name="directory" value="/mwtnLog"/>
        <property name="requireJs" value="app/mwtnLog/mwtnLog.module"/>
        <property name="angularJs" value="app.mwtnLog"/>
        <property name="cssDependencies">
            <list>
                <value>src/app/mwtnLog/mwtnLog-custom.css</value>
            </list>
        </property>
    </bean>
</blueprint>