* @return The names of the given parameters.
* @throws RegainException If getting the parameter names failed.
*/
public Enumeration getParameterNames() throws RegainException {
try {
Parameters params = mRequest.getParameters();
return params.getParameterNames();
}
catch (IOException exc) {
throw new RegainException("Getting parameter names failed", exc);
}
}