(WebdavStatus.SC_OK));
Iterator propertyNameIterator = requestedResource.getAllPropertiesNames();
while (propertyNameIterator.hasNext()) {
PropertyName currentPropertyName = (PropertyName) propertyNameIterator.next();
if (currentPropertyName != null) {
if ( !extendedAllprop && S_DAV.equals(currentPropertyName.getNamespace()) && (
DeltavConstants.DELTAV_PROPERTY_LIST.contains(currentPropertyName.getName()) ||
BindConstants.BIND_PROPERTY_LIST.contains(currentPropertyName.getName()) ||
AclConstants.ACL_PROPERTY_LIST.contains(currentPropertyName.getName())
)
) {
// skip properties from specification extensions
continue;
}