Package org.pentaho.platform.engine.services.actionsequence

Examples of org.pentaho.platform.engine.services.actionsequence.ActionSequenceParameterMgr


  @Override
  public IActionDefinition getActionDefinition() {

    IActionDefinition generic = super.getActionDefinition();

    ActionSequenceParameterMgr paramMgr = new ActionSequenceParameterMgr( getRuntimeContext(), getSession() );

    SqlDataAction action = new SqlDataAction( generic.getElement(), paramMgr );

    return action;
  }
View Full Code Here


    // ActionFactory should return an object that wraps the action definition element to be processed by the component.
    // The component can then use the wrappers API to access the action definition rather than make explicit references
    // to the dom nodes.
    if ( component instanceof IParameterResolver ) {
      component.setActionDefinition( ActionFactory.getActionDefinition( (Element) actionDefinition.getNode(),
          new ActionSequenceParameterMgr( this, currentSession, (IParameterResolver) component ) ) );
    } else {
      component.setActionDefinition( ActionFactory.getActionDefinition( (Element) actionDefinition.getNode(),
          new ActionSequenceParameterMgr( this, currentSession ) ) );
    }

    // create a map of the top level component definition nodes and their text
    Map<String, String> componentDefinitionMap = new HashMap<String, String>();
    List elements = componentDefinition.elements();
View Full Code Here

TOP

Related Classes of org.pentaho.platform.engine.services.actionsequence.ActionSequenceParameterMgr

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.