use of org.eclipse.epp.internal.mpc.core.model.Catalogs in project epp.mpc by eclipse.
the class DefaultCatalogService method listCatalogs.
public List<? extends ICatalog> listCatalogs(IProgressMonitor monitor) throws CoreException {
// $NON-NLS-1$
Catalogs result = processRequest("catalogs/" + API_URI_SUFFIX, monitor);
List<Catalog> catalogs = result.getCatalogs();
for (Catalog catalog : catalogs) {
registerDynamicFavoritesService(catalog);
}
return catalogs;
}