package org.alfresco.module.databse;
import java.io.IOException;
import org.springframework.extensions.webscripts.DeclarativeWebScript;
import org.springframework.extensions.webscripts.WebScriptRequest;
import org.springframework.extensions.webscripts.WebScriptResponse;
public class DatabaseConnect extends DeclarativeWebScript{
public String message( )
{
return "print this message in share dashlet";
}
}
This is my java class which i packed as JAR file, now i want to know how to acces the returned string
in share dashlet and print it
please anyone help with posting an example
Thanks.