NIHVIVO-4017 Always get the ApplicationBean from the DAO.

Don't store the ApplicationBean in the request or in the context, and
don't look for it there.
This commit is contained in:
j2blake 2012-11-15 11:43:19 -05:00
parent 6b743f8b36
commit 24a5784110
9 changed files with 15 additions and 52 deletions

View file

@ -38,9 +38,6 @@
if (request.getAttribute("css") == null){
e+="basicPage.jsp expects that request parameter 'css' be set to css to include in page.\n";
}
if( request.getAttribute("appBean") == null){
e+="basicPage.jsp expects that request attribute 'appBean' be set.\n";
}
if( e.length() > 0 ){
throw new JspException(e);
}