public ActionForward execute(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws IOException,
ServletException
{
String dataSource = Settings.getInstance().getSiteInfo(CVUtility.getHostName(super.getServlet().getServletContext())).getDataSource();
String monitorMessage = "UNKNOWN";
ContactFacadeHome contactFacadeHome = null;
try {
long startTime = System.currentTimeMillis();
contactFacadeHome = (ContactFacadeHome) CVUtility.getHomeObject("com.centraview.contact.contactfacade.ContactFacadeHome", "ContactFacade");
ContactFacade contactRemote = contactFacadeHome.create();
contactRemote.setDataSource(dataSource);
EntityVO entityVO = contactRemote.getEntity(1);
long endTime = System.currentTimeMillis();
// How long it took to retreive data in milliseconds
long msDataRetreival = (endTime - startTime);