]> git.argeo.org Git - gpl/argeo-slc.git/blobdiff - eclipse/plugins/org.argeo.slc.client.ui.dist/src/main/java/org/argeo/slc/client/ui/dist/commands/DeleteWorkspace.java
Restructure SLC
[gpl/argeo-slc.git] / eclipse / plugins / org.argeo.slc.client.ui.dist / src / main / java / org / argeo / slc / client / ui / dist / commands / DeleteWorkspace.java
diff --git a/eclipse/plugins/org.argeo.slc.client.ui.dist/src/main/java/org/argeo/slc/client/ui/dist/commands/DeleteWorkspace.java b/eclipse/plugins/org.argeo.slc.client.ui.dist/src/main/java/org/argeo/slc/client/ui/dist/commands/DeleteWorkspace.java
deleted file mode 100644 (file)
index 4c77c80..0000000
+++ /dev/null
@@ -1,84 +0,0 @@
-package org.argeo.slc.client.ui.dist.commands;
-
-import javax.jcr.Node;
-import javax.jcr.NodeIterator;
-import javax.jcr.Repository;
-import javax.jcr.RepositoryException;
-import javax.jcr.Session;
-import javax.jcr.nodetype.NodeType;
-
-import org.apache.commons.logging.Log;
-import org.apache.commons.logging.LogFactory;
-import org.argeo.ArgeoException;
-import org.argeo.slc.client.ui.dist.DistPlugin;
-import org.argeo.slc.client.ui.dist.utils.CommandHelpers;
-import org.eclipse.core.commands.AbstractHandler;
-import org.eclipse.core.commands.ExecutionEvent;
-import org.eclipse.core.commands.ExecutionException;
-import org.eclipse.jface.dialogs.MessageDialog;
-
-/**
- * Delete chosen workspace in the current repository.
- */
-
-public class DeleteWorkspace extends AbstractHandler {
-       private static final Log log = LogFactory.getLog(DeleteWorkspace.class);
-
-       public final static String ID = DistPlugin.ID + ".deleteWorkspace";
-       public final static String PARAM_WORKSPACE_NAME = DistPlugin.ID
-                       + ".workspaceName";
-       public final static String DEFAULT_LABEL = "Delete";
-       public final static String DEFAULT_ICON_PATH = "icons/removeItem.gif";
-
-       /* DEPENDENCY INJECTION */
-       private Repository repository;
-
-       public Object execute(ExecutionEvent event) throws ExecutionException {
-
-               // MessageDialog.openWarning(DistPlugin.getDefault()
-               // .getWorkbench().getDisplay().getActiveShell(),
-               // "WARNING", "Not yet implemented");
-               // return null;
-
-               String workspaceName = event.getParameter(PARAM_WORKSPACE_NAME);
-               String msg = "Your are about to clear workspace [" + workspaceName
-                               + "].\n Do you really want to proceed ?";
-
-               boolean result = MessageDialog.openConfirm(DistPlugin.getDefault()
-                               .getWorkbench().getDisplay().getActiveShell(),
-                               "Confirm workspace clear", msg);
-               if (result) {
-                       Session session = null;
-                       try {
-                               session = repository.login(workspaceName);
-                               NodeIterator nit = session.getRootNode().getNodes();
-                               while (nit.hasNext()) {
-                                       Node node = nit.nextNode();
-                                       if (node.isNodeType(NodeType.NT_FOLDER)
-                                                       || node.isNodeType(NodeType.NT_UNSTRUCTURED)) {
-                                               String path = node.getPath();
-                                               node.remove();
-                                               session.save();
-                                               if (log.isDebugEnabled())
-                                                       log.debug("Cleared " + path + " in "
-                                                                       + workspaceName);
-                                       }
-                               }
-                               CommandHelpers.callCommand(RefreshDistributionsView.ID);
-                       } catch (RepositoryException re) {
-                               throw new ArgeoException(
-                                               "Unexpected error while deleting workspace ["
-                                                               + workspaceName + "].", re);
-                       } finally {
-                               if (session != null)
-                                       session.logout();
-                       }
-               }
-               return null;
-       }
-
-       /* DEPENDENCY INJECTION */
-       public void setRepository(Repository repository) {
-               this.repository = repository;
-       }
-}
\ No newline at end of file