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

link.jfire.mvc.binder.field.BinderField Maven / Gradle / Ivy

package link.jfire.mvc.binder.field;

import java.util.Map;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

public interface BinderField
{
    /**
     * 将request中对应的字段的值按照正确的方式转换并且设置到entity中
     * 
     * @param request
     * @param entity
     * @param map TODO
     * @param response TODO
     * @return TODO
     * @throws InstantiationException TODO
     * @throws IllegalAccessException TODO
     */
    public Object setValue(HttpServletRequest request, Object entity, Map map, HttpServletResponse response) throws InstantiationException, IllegalAccessException;
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy