* @throws ParameterNotFoundException if the parameter was not specified
*/
public static String getUrl(HttpServletRequest request) {
String url = request.getParameter(Constants.URL_PARAM);
if ((url == null) || url.equals("")) {
throw new ParameterNotFoundException(Constants.URL_PARAM);
}
return url;
}