@Override
protected void doRename(final FileObject newFile) throws Exception
{
final String url = encodePath(toUrlString((URLFileName) getName()));
final String dest = toUrlString((URLFileName) newFile.getName(), false);
final DavMethod method = new MoveMethod(url, dest, false);
setupMethod(method);
execute(method);
}