Package com.astamuse.asta4d.web.dispatch.request.transformer

Examples of com.astamuse.asta4d.web.dispatch.request.transformer.TemplateNotFoundException


    public Object handle(UrlMappingRule currentRule) {
        String path = super.convertPath(currentRule);
        if (path == null) {
            WebApplicationContext context = WebApplicationContext.getCurrentThreadWebApplicationContext();
            String url = context.getAccessURI();
            return new TemplateNotFoundException("Generically convert from path:" + url);
        } else {
            return path;
        }
    }
View Full Code Here

TOP

Related Classes of com.astamuse.asta4d.web.dispatch.request.transformer.TemplateNotFoundException

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.