Package org.apache.struts.action

Examples of org.apache.struts.action.ActionMappings


     * @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);
    }
View Full Code Here


     * @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);
    }
View Full Code Here

     *
     * @param path Request path for which a mapping is requested
     */
    public ActionMapping getActionMapping(String path) {

        ActionMappings mappings = getActionMappings();

        if (mappings == null)
            return null;
        return mappings.findMapping(path);

    }
View Full Code Here

     * @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);
    }
View Full Code Here

TOP

Related Classes of org.apache.struts.action.ActionMappings

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.