Examples of DropDownCacheBuilder


Examples of net.naijatek.myalumni.modules.common.helper.DropDownCacheBuilder

      setServletContextObject(request, BaseConstants.HAS_DORMITORY, sysVO.getHasDormitory());
    }
    msgs.add(BaseConstants.INFO_KEY, new ActionMessage("message.record.updated"));
    saveMessages(request, msgs);
    resetToken(request);
       DropDownCacheBuilder ddb = new DropDownCacheBuilder();
       List<LabelValueBean> adminSearchCategory = ddb.buildSearchOptions(sysVO.getHasDormitory(), true);
       List<LabelValueBean> searchCategory = ddb.buildSearchOptions(sysVO.getHasDormitory(), false);
      
       setServletContextObject(request, BaseConstants.LIST_OF_ADMIN_SEARCH_OPTIONS, adminSearchCategory);
       setServletContextObject(request, BaseConstants.LIST_OF_MEMBER_SEARCH_OPTIONS,searchCategory);
    return mapping.findForward(BaseConstants.FWD_SUCCESS);
  }
View Full Code Here

Examples of net.naijatek.myalumni.modules.common.helper.DropDownCacheBuilder

   *
   * @throws Exception
   */
  private void setupOtherCache(final String hasDormitory) throws Exception {

    DropDownCacheBuilder ddb = new DropDownCacheBuilder();
    List<LabelValueBean> adminSearchCategory = ddb.buildSearchOptions(
        hasDormitory, true);
    List<LabelValueBean> searchCategory = ddb.buildSearchOptions(
        hasDormitory, false);

    getServletContext()
        .setAttribute(BaseConstants.LIST_OF_ADMIN_SEARCH_OPTIONS,
            adminSearchCategory);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.