// call EJB support helper to update DB
SupportHelperHome supportHome = (SupportHelperHome)CVUtility.getHomeObject("com.centraview.support.helper.SupportHelperHome", "SupportHelper");
try {
// this updates the "supportEmailCheckInterval"
// setting in the "systemsettings" table
SupportHelper supportRemote = (SupportHelper)supportHome.create();
supportRemote.setDataSource(dataSource);
supportRemote.setSupportEmailCheckInterval(formInterval.intValue());
} catch (Exception e) {
// "Oh we're not gonna take it... No, we ain't gonna take it... Oh we're not gonna take it anymore..."
}