- 
    
Bug
 - 
    Resolution: Fixed
 - 
    
Major
 - 
    None
 - 
    None
 - 
    None
 
Actually Page interface extends MovableAmetysObject so virtual pages are marked as moveables but are not.
To disable drag&drop of virtual pages, we need a MoveablePage interface
public interface MoveablePage extends MovableAmetysObject { }
A moveable attribute could be sax in PageGenerator to disable drag&drop in sitemap tool
if (page instanceof MoveablePage) { attrs.addCDATAAttribute("isMoveable", String.valueOf(true)); }