01: /*
02: * SalomeTMF is a Test Management Framework
03: * Copyright (C) 2005 France Telecom R&D
04: *
05: * This library is free software; you can redistribute it and/or
06: * modify it under the terms of the GNU Lesser General Public
07: * License as published by the Free Software Foundation; either
08: * version 2 of the License, or (at your option) any later version.
09: *
10: * This library is distributed in the hope that it will be useful,
11: * but WITHOUT ANY WARRANTY; without even the implied warranty of
12: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13: * Lesser General Public License for more details.
14: *
15: * You should have received a copy of the GNU Lesser General Public
16: * License along with this library; if not, write to the Free Software
17: * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18: *
19: * @author Fayçal SOUGRATI
20: *
21: * Contact: mikael.marche@rd.francetelecom.com
22: */
23: package org.objectweb.salome_tmf.api.api2ihm.adminProject;
24:
25: /**
26: * Fonctions de mise a jour relatives a l'aire fonctionnelle "Administrer un projet"
27: */
28:
29: public interface AdminProjectUpdate {
30:
31: /**
32: * Fonction qui fixe le projet SalomeTMF dans lequel l'utilisateur travaille
33: * @param projectName
34: */
35: public void setProject(String projectName);
36:
37: /**
38: * Mise a jour des permissions dans un groupe
39: *
40: * @param groupName
41: * @param permission
42: */
43: public void updatePermission(String groupName, int permission);
44:
45: /**
46: * Mise a jour de la description du role d'un user dans un groupe
47: *
48: * @param userLogin
49: * @param groupName
50: * @param description
51: */
52: public void updateUserDescInGroupe(String userLogin,
53: String groupName, String description);
54:
55: /**
56: * Mise a jour du nom et de la description d'un groupe
57: * @param oldGroupName
58: * @param newGroupName
59: * @param newDescription
60: */
61: public void updateGroup(String oldGroupName, String newGroupName,
62: String newDescription);
63: }
|