return _baseDataAccessor.remove(path, options);
}
@Override
public List<String> getChildNames(PropertyKey key) {
PropertyType type = key.getType();
String parentPath = key.getPath();
int options = constructOptions(type);
List<String> childNames = _baseDataAccessor.getChildNames(parentPath, options);
if (childNames == null) {
childNames = Collections.emptyList();