Package org.infoglue.cms.util.sorters

Examples of org.infoglue.cms.util.sorters.ComponentDeploymentComparator


          List remoteContentVOList = Arrays.asList(contentVOArray);
          List components = ContentController.getContentController().getContentVOWithContentTypeDefinition("HTMLTemplate");
 
          logger.info("remoteContentVOList:" + remoteContentVOList.size());
          logger.info("components:" + components.size());
        Comparator comparator = new ComponentDeploymentComparator("modifiedDateTime", "desc");
        Collections.sort(remoteContentVOList, comparator);
 
          if(this.synchronizationMethod.equalsIgnoreCase("pull"))
          {
            Iterator remoteContentVOListIterator = remoteContentVOList.iterator();
View Full Code Here

TOP

Related Classes of org.infoglue.cms.util.sorters.ComponentDeploymentComparator

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.