Package org.gatein.mop.api.workspace

Examples of org.gatein.mop.api.workspace.Page


    public void saveChangesTo(UIWindow window) {
        POMSession session = pomManager.getSession();

        // mark page for cache invalidation otherwise DataCache will use the previous customization id when trying to set
        // the portlet state in UIPortlet.setState and will not find it resulting in an error
        Page page = window.getPage();
        session.scheduleForEviction(new org.exoplatform.portal.pom.data.PageKey("portal", page.getSite().getName(), page
                .getName()));

        // save
        session.save();
    }
View Full Code Here

TOP

Related Classes of org.gatein.mop.api.workspace.Page

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.