Merge the web_client_signed branch. Now the Web client communicates solely through...
[pithos] / gss / src / gr / ebs / gss / client / commands / DeleteUserOrGroupCommand.java
1 /*
2  * Copyright 2008, 2009 Electronic Business Systems Ltd.
3  *
4  * This file is part of GSS.
5  *
6  * GSS is free software: you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation, either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * GSS is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with GSS.  If not, see <http://www.gnu.org/licenses/>.
18  */
19 package gr.ebs.gss.client.commands;
20
21 import gr.ebs.gss.client.DeleteGroupDialog;
22 import gr.ebs.gss.client.DeleteUserDialog;
23 import gr.ebs.gss.client.GSS;
24 import gr.ebs.gss.client.Groups.Images;
25 import gr.ebs.gss.client.rest.resource.GroupResource;
26 import gr.ebs.gss.client.rest.resource.GroupUserResource;
27
28 import com.google.gwt.user.client.Command;
29 import com.google.gwt.user.client.ui.PopupPanel;
30
31
32 /**
33  * @author kman
34  *
35  */
36 public class DeleteUserOrGroupCommand implements Command{
37         private PopupPanel containerPanel;
38         final Images newImages;
39         /**
40          * @param _containerPanel
41          * @param _@param newImages the images of the new folder dialog
42          */
43         public DeleteUserOrGroupCommand(PopupPanel _containerPanel, final Images _newImages){
44                 containerPanel = _containerPanel;
45                 newImages=_newImages;
46         }
47         /* (non-Javadoc)
48          * @see com.google.gwt.user.client.Command#execute()
49          */
50         public void execute() {
51                 containerPanel.hide();
52                 if(GSS.get().getCurrentSelection() instanceof GroupResource)
53                         displayNewGroup();
54                 else if(GSS.get().getCurrentSelection() instanceof GroupUserResource)
55                         displayNewUser();
56                 else
57                         GSS.get().displayError("No user or group selected");
58
59         }
60
61         void displayNewGroup() {
62                 DeleteGroupDialog dlg = new DeleteGroupDialog(newImages);
63                 dlg.center();
64         }
65
66         void displayNewUser() {
67                 DeleteUserDialog dlg = new DeleteUserDialog(newImages);
68                 dlg.center();
69         }
70
71 }