Package org.exoplatform.portal.url

Examples of org.exoplatform.portal.url.StandaloneAppURLContext


        super(app, controllerContext, SiteType.USER.name(), siteName, requestPath, null);
    }

    @Override
    public <R, U extends PortalURL<R, U>> U newURL(ResourceType<R, U> resourceType, URLFactory urlFactory) {
        StandaloneAppURLContext context = new StandaloneAppURLContext(getControllerContext());
        U url = urlFactory.newURL(resourceType, context);
        if (url != null) {
            url.setAjax(false);
        }
        return url;
View Full Code Here

TOP

Related Classes of org.exoplatform.portal.url.StandaloneAppURLContext

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.