public Collection get(String path, int start, int pageSize) throws RegistryException {
if (isCommunityFeatureRequest(path)) {
return registry.get(path, start, pageSize);
}
Collection collection;
RegistryCacheKey registryCacheKey = getRegistryCacheKey(registry, path +
";start=" + start + ";pageSize=" + pageSize);
if (!cache.containsKey(registryCacheKey)) {
collection = registry.get(path, start, pageSize);
if (collection.getProperty(RegistryConstants.REGISTRY_LINK) == null) {