status.put(new Integer(WebdavStatus.SC_OK), values);
return status;
}
private PartialResponse.Content getProperty(Collection col, Entry entry, String propName) {
DAVProperty prop = (DAVProperty) PROPS_MAP.get(propName);
PartialResponse.Content part;
if (entry != null) {
part = prop.getProperty(entry);
} else if (col != null) {
part = prop.getProperty(col);
} else {
part = prop.getRootProperty();
}
return part;
}