...
Your pentaho.xml file would look something like this:
Code Block | ||||||
---|---|---|---|---|---|---|
| ||||||
<beans> <bean id="sessionStartupActionsList" class="java.util.ArrayList"> <constructor-arg> <list> <bean class="org.pentaho.platform.engine.core.system.SessionStartupAction"> <property name="sessionType" value=""/> <property name="actionPath" value=""/> <property name="actionOutputScope" value=""/> </bean> <!-- ...other session startup actions... --> <bean class="org.pentaho.platform.engine.core.system.SessionStartupAction"> <property name="sessionType" value=""/> <property name="actionPath" value=""/> <property name="actionOutputScope" value=""/> </bean> </list> </constructor-arg> </bean> </beans> |
...