Package com.ourlinc.helloworld.model

Examples of com.ourlinc.helloworld.model.Activity.cancel()


    Activity act = m_ActivityService.getActivity(actId);
    if (null == act) {
      request.setAttribute("errorMsg", "找不到id=" + actId + "的活动");
      return "error";
    }
    act.cancel();
    act.flush();
    response.sendRedirect("sendemail.jspx?op=cancel&actId="
        + Misc.encodeUrl(act.getId()));
    return null;
  }
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.