Package org.opencms.db

Examples of org.opencms.db.CmsPublishedResource


        @SuppressWarnings("unchecked")
        List<CmsPublishedResource> resources = cms.readPublishedResources(publishHistoryId);
        Iterator<CmsPublishedResource> iter = resources.iterator();
       
        while (iter.hasNext()) {
          CmsPublishedResource resource = (CmsPublishedResource) iter.next();
          if (handler.handlesResource(context, resource)) {
            if (!isInitialized) {
                    handler.initialize(context);
                    isInitialized = true;
            }
View Full Code Here

TOP

Related Classes of org.opencms.db.CmsPublishedResource

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.