Renamed all packages to gr.grnet.pithos.*
[pithos-web-client] / src / gr / grnet / pithos / web / 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.grnet.pithos.web.client.commands;
20
21 import gr.grnet.pithos.web.client.DeleteGroupDialog;
22 import gr.grnet.pithos.web.client.DeleteUserDialog;
23 import gr.grnet.pithos.web.client.GSS;
24 import gr.grnet.pithos.web.client.Groups.Images;
25 import gr.grnet.pithos.web.client.rest.resource.GroupResource;
26 import gr.grnet.pithos.web.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 images;
39
40         /**
41          * @param aContainerPanel
42          * @param newImages the images of the new folder dialog
43          */
44         public DeleteUserOrGroupCommand(PopupPanel aContainerPanel, final Images newImages){
45                 containerPanel = aContainerPanel;
46                 images = newImages;
47         }
48
49         @Override
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         void displayNewGroup() {
61                 DeleteGroupDialog dlg = new DeleteGroupDialog(images);
62                 dlg.center();
63         }
64
65         void displayNewUser() {
66                 DeleteUserDialog dlg = new DeleteUserDialog(images);
67                 dlg.center();
68         }
69
70 }