package com.jpmorgan.gcrm.clive.profile.controller; import com.opensymphony.xwork.ActionSupport; import com.opensymphony.webwork.ServletActionContext; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; /** * User: D105926 * Date: Dec 11, 2006 * Time: 1:02:03 PM */ public class DiaryAction extends ActionSupport { private static final Log log = LogFactory.getLog(DiaryAction.class); public String execute() { log.debug("Forward to success"); return SUCCESS; } public String addDaily() { statusMsg = "Successfully Added Daily Rule"; return SUCCESS; } }