Package com.dotmarketing.portlets.user.struts

Examples of com.dotmarketing.portlets.user.struts.UserCategoriesForm


  public void processAction(
      ActionMapping mapping, ActionForm form, PortletConfig config,
      ActionRequest req, ActionResponse res)
  throws Exception {

    UserCategoriesForm userCategoriesForm = (UserCategoriesForm) form;
    User user = _getUser(req);
    String referer = req.getParameter("referer");
   
    String userProxyInode = userCategoriesForm.getUserProxy();
    boolean isNonclicktracking = userCategoriesForm.isNonclicktracking();
    UserProxy userProxy = com.dotmarketing.business.APILocator.getUserProxyAPI().getUserProxy(userProxyInode,APILocator.getUserAPI().getSystemUser(), false);
    String[] categories = userCategoriesForm.getCategories();
   
    if(categories != null && InodeUtils.isSet(userProxy.getInode()))
    {
      try
      {
View Full Code Here

TOP

Related Classes of com.dotmarketing.portlets.user.struts.UserCategoriesForm

Copyright © 2018 www.massapicom. 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.