Package org.pentaho.actionsequence.dom

Examples of org.pentaho.actionsequence.dom.IActionResource


  /*
   * Utility function to get the catalog info from hibernate config.
   */
  private String getCatalog() {
    IActionResource hibernateConfigRes = ( (HQLConnectionAction) getActionDefinition() ).getHibernateConfigResource();
    String catalog = null;
    String resAddress = null;

    if ( hibernateConfigRes != null ) {
      String resName = this.applyInputsToFormat( hibernateConfigRes.getName() );
      IActionSequenceResource resource = getResource( resName );
      resAddress = resource.getAddress();
      if ( resAddress != null ) {
        catalog = this.applyInputsToFormat( resAddress );
      }
View Full Code Here

TOP

Related Classes of org.pentaho.actionsequence.dom.IActionResource

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.