1 <blueprint xmlns="http://www.osgi.org/xmlns/blueprint/v1.0.0">
 
   2     <reference id="httpService" availability="mandatory" activation="eager" interface="org.osgi.service.http.HttpService"/>
 
   3     <reference id="loader" availability="mandatory" activation="eager" interface="org.opendaylight.dlux.loader.DluxModuleLoader"/>
 
   5     <bean id="bundle" init-method="initialize" destroy-method="clean" class="org.opendaylight.dlux.loader.DluxModule">
 
   6         <property name="httpService" ref="httpService"/>
 
   7         <property name="loader" ref="loader"/>
 
   8         <property name="moduleName" value="odlChat"/>
 
   9         <property name="url" value="/src/app/odlChat"/>
 
  10         <property name="directory" value="/odlChat"/>
 
  11         <property name="requireJs" value="app/odlChat/odlChat.module"/>
 
  12         <property name="angularJs" value="app.odlChat"/>
 
  13         <property name="cssDependencies">
 
  15                 <value>src/app/odlChat/odlChat-custom.css</value>