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

com.github.restup.bind.param.ParameterProvider Maven / Gradle / Ivy

There is a newer version: 0.0.5
Show newest version
package com.github.restup.bind.param;

import java.util.List;

/**
 * Interface for accessing request parameters. 

Intended to typically wrap an HttpServletRequest, however by using ParameterProvider instead, core Up! is decoupled from servlet apis.

Access to request parameters directly is required when binding values to pojos used as filter method arguments */ public interface ParameterProvider { /** * @return A list of all parameter names */ List getParameterNames(); /** * @param parameterName name of parameter * @return all values for the specified parameterName */ String[] getParameter(String parameterName); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy