Package com.jfinal.ext.interceptor

Source Code of com.jfinal.ext.interceptor.POST

package com.jfinal.ext.interceptor;

import com.jfinal.aop.Interceptor;
import com.jfinal.core.ActionInvocation;
import com.jfinal.core.Controller;

/**
* Accept POST method only.
*/
public class POST implements Interceptor {
  public void intercept(ActionInvocation ai) {
    Controller controller = ai.getController();
    if ("POST".equalsIgnoreCase(controller.getRequest().getMethod().toUpperCase()))
      ai.invoke();
    else
      controller.renderError404();
  }
}
TOP

Related Classes of com.jfinal.ext.interceptor.POST

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.