* @deprecated This will be removed in VelocityTools 1.2
*/
public static ActionMapping getActionMapping(String path,
ServletContext app)
{
ActionMappings mappings = getActionMappings(app);
if (mappings == null)
{
return null;
}
return mappings.findMapping(path);
}