Package org.broadleafcommerce.cms.url.domain

Examples of org.broadleafcommerce.cms.url.domain.URLHandlerImpl


        handlerList.add(createHandler("^/simple_regex$", "/NewSimpleRegex"));
        return handlerList;
    }

    protected URLHandler createHandler(String incomingUrl, String newUrl) {
        URLHandler handler = new URLHandlerImpl();
        handler.setIncomingURL(incomingUrl);
        handler.setNewURL(newUrl);
        handler.setUrlRedirectType(URLRedirectType.REDIRECT_PERM);
        return handler;
    }
View Full Code Here

TOP

Related Classes of org.broadleafcommerce.cms.url.domain.URLHandlerImpl

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.