tableName = "emailfolder";
}
CommonHelperHome home = (CommonHelperHome)CVUtility.getHomeObject(
"com.centraview.common.helper.CommonHelperHome", "CommonHelper");
CommonHelper remote = home.create();
remote.setDataSource(dataSource);
// get the list of folders that represents the full path
// to the current folder selected. This will be shown at
// the top of the screen with navigation
ArrayList fullPathList = remote.getFolderFullPath(folderID.intValue(), tableName);
emailForm.set("fullPathList", fullPathList);
ArrayList subfolderList = remote.getSubFolderList(individualID, folderID.intValue(),
tableName);
long curFolderId = 0;
if (request.getParameter("curFolderID") != null) {
curFolderId = Long.parseLong(request.getParameter("curFolderID"));