Skip to content

Instantly share code, notes, and snippets.

@xhawk
Created March 14, 2013 11:36
Show Gist options
  • Save xhawk/5160683 to your computer and use it in GitHub Desktop.
Save xhawk/5160683 to your computer and use it in GitHub Desktop.
Deletes a node from Alfresco
import org.alfresco.repo.security.authentication.AuthenticationUtil
import org.alfresco.service.cmr.repository.NodeRef
import org.alfresco.service.cmr.repository.NodeService
NodeService nodeService = serviceRegistry.getNodeService();
AuthenticationUtil.runAsSystem([ doWork: {
nodeService.deleteNode(new NodeRef("workspace://SpacesStore/86131ef6-4543-41d6-bc3e-4e18f1ac89fb"));
} ] as AuthenticationUtil.RunAsWork);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment