// 显示具体某个组的详细规则
 public String pureRuleList() {
   String id = getParaValue("id");
   CompGroupRuleDao groupRuleDao = new CompGroupRuleDao();
   CompGroupRule rule = (CompGroupRule) groupRuleDao.findByID(id);
   groupRuleDao.close();
   CompRuleDao dao = new CompRuleDao();
   String temp = rule.getRuleId();
   String ids = temp.substring(0, temp.lastIndexOf(","));
   List list = dao.findByCondition(" where ID in(" + ids + ")");
   request.setAttribute("list", list);
   return "/config/vpntelnet/compliance/pureRuleList.jsp";
 }
  // 编辑规则组信息
  public String editGroupRule() {
    String id = getParaValue("id");
    CompRuleDao dao = new CompRuleDao();
    List list = dao.loadAll();
    CompGroupRuleDao groupRuleDao = new CompGroupRuleDao();

    CompGroupRule rule = (CompGroupRule) groupRuleDao.findByID(id);
    groupRuleDao.close();
    request.setAttribute("list", list);
    request.setAttribute("compGroupRule", rule);
    return "/config/vpntelnet/compliance/editGroupRule.jsp";
  }