Package org.pentaho.actionsequence.dom.actions

Examples of org.pentaho.actionsequence.dom.actions.HelloWorldAction


  }

  @SuppressWarnings( "deprecation" )
  @Override
  protected boolean executeAction() {
    HelloWorldAction helloWorldAction = (HelloWorldAction) getActionDefinition();
    boolean result = true;

    // return the quote as the result of this component
    String msg =
        Messages.getInstance().getString(
            "HelloWorld.USER_HELLO_WORLD_TEXT", helloWorldAction.getQuote().getStringValue( "" ) ); //$NON-NLS-1$ //$NON-NLS-2$

    OutputStream outputStream = getDefaultOutputStream( "text/html" ); //$NON-NLS-1$
    if ( outputStream != null ) {
      try {
        outputStream.write( msg.getBytes( LocaleHelper.getSystemEncoding() ) );
View Full Code Here

TOP

Related Classes of org.pentaho.actionsequence.dom.actions.HelloWorldAction

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.