Package org.jasig.portal.layout.dao.jpa

Examples of org.jasig.portal.layout.dao.jpa.StylesheetDescriptorImpl


    @Override
    public Map<Long, WindowState> getWindowStates() {
        final Map<Long, WindowState> simpleWindowStates = new LinkedHashMap<Long, WindowState>();
        synchronized (this.windowStates) {
            for (Map.Entry<StylesheetDescriptorImpl, WindowState> windowStateEntry : windowStates.entrySet()) {
                final StylesheetDescriptorImpl stylesheetDescriptor = windowStateEntry.getKey();
                final long stylesheetDescriptorId = stylesheetDescriptor.getId();
                final WindowState windowState = windowStateEntry.getValue();
                simpleWindowStates.put(stylesheetDescriptorId, windowState);
            }
        }
        return Collections.unmodifiableMap(simpleWindowStates);
View Full Code Here

TOP

Related Classes of org.jasig.portal.layout.dao.jpa.StylesheetDescriptorImpl

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.