コード例 #1
0
 /** 置session信息 */
 protected void setAttribute(String name, Object value) {
   JsfHelper.getSession(FacesContext.getCurrentInstance()).setAttribute(name, value);
 }
コード例 #2
0
 /** 得到当前班级管理员 */
 protected Teacher getCurrentTeacher() {
   return (Teacher)
       JsfHelper.getSession(FacesContext.getCurrentInstance())
           .getAttribute(Contants.CLASS_TEACHER);
 }
コード例 #3
0
 /** 得到session信息 */
 protected String getAttribute(String name) {
   return (String) JsfHelper.getSession(FacesContext.getCurrentInstance()).getAttribute(name);
 }
コード例 #4
0
 protected HttpSession getSession() {
   return JsfHelper.getSession(FacesContext.getCurrentInstance());
 }