SupportAction.java 460 Bytes
Newer Older
Kim Gyeongeun committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
/**
 *
 */
package jp.agentec.sinaburocast.action.admin;

import jp.agentec.sinaburocast.action.AbstractAction;

import org.apache.log4j.Logger;
import org.seasar.struts.annotation.Execute;

/**
 * @author kim-hs
 *
 */
public class SupportAction extends AbstractAction {
	private final Logger logger = Logger.getLogger(getClass());

	/**
	 * 初期表示
	 */
	@Execute(validator = false)
	public String index() {

		return "/admin/support/index.html";
	}

}