* @param oURLQueryParameters a map to be converted to URL query parameters
* @return a string representing a complete URL
*/
public String resolve( Class oControllerClass, String sControllerMethodName, Map oURLQueryParameters )
{
return _oRedirectResolverExecutor.resolveRedirect( _oHttpServletRequest, new Redirect( oControllerClass, sControllerMethodName, oURLQueryParameters ) );
}