1 23 24 package org.infoglue.cms.applications.managementtool.actions; 25 import org.infoglue.cms.applications.common.actions.InfoGlueAbstractAction; 26 import org.infoglue.cms.controllers.kernel.impl.simple.GroupControllerProxy; 27 28 31 32 public class DeleteGroupAction extends InfoGlueAbstractAction 33 { 34 private static final long serialVersionUID = 1L; 35 36 private String groupName; 37 38 protected String doExecute() throws Exception 39 { 40 GroupControllerProxy.getController().deleteGroup(groupName); 41 42 return "success"; 43 } 44 45 public void setGroupName(String string) 46 { 47 groupName = string; 48 } 49 50 } 51 | Popular Tags |