Examples of queryReferencableResourcesLimitType()


Examples of org.olat.repository.RepositoryManager.queryReferencableResourcesLimitType()

    Identity ident = ureq.getIdentity();
    String name = searchForm.getDisplayName();
    String author = searchForm.getAuthor();
    String desc = searchForm.getDescription();
   
    List entries = rm.queryReferencableResourcesLimitType(ident, roles, restrictedTypes, name, author, desc);
    repoTableModel.setEntries(entries);
    tableCtr.modelChanged();
    displaySearchResults(ureq);
  }
View Full Code Here

Examples of org.olat.repository.RepositoryManager.queryReferencableResourcesLimitType()

      restrictedTypes = null;
    }
    else {
      restrictedTypes.addAll(Arrays.asList(limitTypes));
    }
    List entries = rm.queryReferencableResourcesLimitType(owner, roles, restrictedTypes, null, null, null);
   
    repoTableModel.setEntries(entries);
    tableCtr.modelChanged();
    displaySearchResults(null);
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.