X-Git-Url: http://git.argeo.org/?a=blobdiff_plain;f=org.argeo.slc.client.ui.dist%2Fsrc%2Forg%2Fargeo%2Fslc%2Fclient%2Fui%2Fdist%2Fcommands%2FManageWorkspaceAuth.java;h=9e499b53fc0e2586f7b7cb38267cad947f9b89dd;hb=149f170df5b5430cd816a4c80347a37055415139;hp=bd64aeb3af9eab6c77818a3843542d77b8466b16;hpb=2db415932b071525adb52c6374e021174512a924;p=gpl%2Fargeo-slc.git diff --git a/org.argeo.slc.client.ui.dist/src/org/argeo/slc/client/ui/dist/commands/ManageWorkspaceAuth.java b/org.argeo.slc.client.ui.dist/src/org/argeo/slc/client/ui/dist/commands/ManageWorkspaceAuth.java index bd64aeb3a..9e499b53f 100644 --- a/org.argeo.slc.client.ui.dist/src/org/argeo/slc/client/ui/dist/commands/ManageWorkspaceAuth.java +++ b/org.argeo.slc.client.ui.dist/src/org/argeo/slc/client/ui/dist/commands/ManageWorkspaceAuth.java @@ -19,8 +19,8 @@ import javax.jcr.Repository; import javax.jcr.RepositoryException; import javax.jcr.Session; -import org.argeo.ArgeoException; import org.argeo.jcr.JcrUtils; +import org.argeo.slc.SlcException; import org.argeo.slc.client.ui.dist.DistPlugin; import org.argeo.slc.client.ui.dist.wizards.ChangeRightsWizard; import org.eclipse.core.commands.AbstractHandler; @@ -30,18 +30,17 @@ import org.eclipse.jface.resource.ImageDescriptor; import org.eclipse.jface.wizard.WizardDialog; import org.eclipse.ui.handlers.HandlerUtil; -/** - * Open a dialog to manage rights on the current workspace's root node. - */ +/** Open a dialog to manage rights on the current workspace's root node */ public class ManageWorkspaceAuth extends AbstractHandler { // private static final Log log = // LogFactory.getLog(ManageWorkspaceAuth.class); - public final static String ID = DistPlugin.ID + ".manageWorkspaceAuth"; + public final static String ID = DistPlugin.PLUGIN_ID + + ".manageWorkspaceAuth"; public final static String DEFAULT_LABEL = "Manage Rights"; public final static ImageDescriptor DEFAULT_ICON = DistPlugin .getImageDescriptor("icons/changeRights.gif"); - public final static String PARAM_WORKSPACE_NAME = DistPlugin.ID + public final static String PARAM_WORKSPACE_NAME = DistPlugin.PLUGIN_ID + ".workspaceName"; /* DEPENDENCY INJECTION */ @@ -58,7 +57,7 @@ public class ManageWorkspaceAuth extends AbstractHandler { dialog.open(); return null; } catch (RepositoryException re) { - throw new ArgeoException("Cannot log in the repository " + throw new SlcException("Cannot log in the repository " + repository + " in workspace " + workspaceName, re); } finally { JcrUtils.logoutQuietly(session);