All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.andyshaox.servlet.mapping.ParameterFormat Maven / Gradle / Ivy

package com.github.andyshaox.servlet.mapping;

import java.io.IOException;

import javax.servlet.ServletConfig;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

/**
 * 
 * Title:
* Descript:
* Copyright: Copryright(c) Jan 28, 2016
* Encoding:UNIX UTF-8 * * @author Andy.Shao * */ @FunctionalInterface public interface ParameterFormat { static final ParameterFormat DO_NOTHING = (conf , req , resp , variable , clazz) -> Variable.readParam(req , variable); Object covert(ServletConfig config , HttpServletRequest request , HttpServletResponse response , Variable variable , Class valueType) throws ServletException , IOException; }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy