IndexAction.java 362 Bytes
Newer Older
Kim Gyeongeun committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
package jp.agentec.sinaburocast.action.admin;


import java.io.IOException;

import jp.agentec.sinaburocast.action.AbstractAction;

import org.seasar.struts.annotation.Execute;

public class IndexAction extends AbstractAction{	
    @Execute(validator = false)
	public String index() throws IOException {
    	redirect("/admin/member/");
       return null;
	}
}