Package com.iqser.core.repository

Examples of com.iqser.core.repository.RepositoryReader


  @Override
  public void execute() {
    if (isUpdateJob()) {
      try {
        RepositoryReader repoReader = pluginHelper
            .getRepositoryReader();
        List<Long> contentIds = (List<Long>) repoReader
            .getContentsContainingAttribute(RATINGS);
        Collection<String> visibleAttributes = repoReader
            .getAttributeNames(contentIds);
        List<Content> ratedContents = new ArrayList<Content>();
        for (Long id : contentIds) {
          ratedContents.add(getContent(id,
              (Collection<String>) visibleAttributes, true));
View Full Code Here

TOP

Related Classes of com.iqser.core.repository.RepositoryReader

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.