Fixed AR-207: Added older than and younger than support to ContentStore#getUrls

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@2402 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Derek Hulley
2006-02-16 00:18:57 +00:00
parent d57dda657d
commit 9474498ca1
4 changed files with 45 additions and 6 deletions

View File

@@ -18,6 +18,7 @@ package org.alfresco.repo.content;
import java.util.Calendar;
import java.util.GregorianCalendar;
import java.util.Set;
import org.alfresco.error.AlfrescoRuntimeException;
import org.alfresco.service.cmr.repository.ContentIOException;
@@ -112,4 +113,9 @@ public abstract class AbstractContentStore implements ContentStore
}
return path;
}
public final Set<String> getUrls() throws ContentIOException
{
return getUrls(null, null);
}
}