Package org.nemesis.forum

Examples of org.nemesis.forum.ProfileManager.deleteGroup()


        try {
         
          ForumFactory forumFactory = ForumFactory.getInstance(getAuthToken(request));
          ProfileManager manager = forumFactory.getProfileManager();
          Group group = manager.getGroup(Integer.parseInt(request.getParameter("id")));
          manager.deleteGroup(group);
          errors.add("general"new ActionError("delGroup.confirm"));
         
        }
        catch( NotFoundException fnfe ) {
          errors.add("general"new ActionError("delGroup.notFound"));         
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.