if (isFilteredResource(destination)) {
throw new DavException(DavServletResponse.SC_FORBIDDEN);
}
// make sure, that src and destination belong to the same workspace
checkSameWorkspace(destination.getLocator());
if (!config.getCopyMoveManager().copy(new CopyMoveContextImpl(getJcrSession(), shallow), this, destination)) {
throw new DavException(DavServletResponse.SC_UNSUPPORTED_MEDIA_TYPE);
}
}