// for each content element, check resource type and classify
for (Enumeration e = propFind.getAllResponseURLs(); e.hasMoreElements(); )
{
String href = (String) e.nextElement();
ResourceTypeProperty property =
this.properties.getResourceType(collURL, href);
if (property != null) {
if (property.isCollection()) {
if (!href.endsWith(SEPARATOR)) href = href + SEPARATOR;
// the collection URL itself may be in the list of
// response URL; filter them out to avoid recursion
HttpURL sub = Utils.createHttpURL(collURL, href);
if (!sub.equals(collURL)) {