}
@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() ) );