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

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

There is a newer version: 3.2.10.RELEASE
Show newest version
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;

import com.github.andyshao.reflect.ConstructorOperation;

/**
 * 
 * Title:
* Descript:
* Copyright: Copryright(c) Jan 28, 2016
* Encoding:UNIX UTF-8 * * @author Andy.Shao * */ public class GenericParameterFormat implements ParameterFormat { private ParameterFormat format = ParameterFormat.DO_NOTHING; @Override public Object covert(ServletConfig config , HttpServletRequest request , HttpServletResponse response , Variable variable , Class valueType) throws ServletException , IOException { if (!variable.getFormatClass().equals(ParameterFormat.class)) { ParameterFormat format = ConstructorOperation.newInstance(variable.getFormatClass()); return format.covert(config , request , response , variable , valueType); } else return this.format.covert(config , request , response , variable , valueType); } public void setFormat(ParameterFormat format) { this.format = format; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy