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:
24: package org.objectweb.salome_tmf.api.api2ihm.adminVT;
25:
26: /**
27: * Fonctions d'insertion relatives e l'aire fonctionnelle "Administrer SalomeTMF"
28: */
29:
30: public interface AdminVTInsert {
31:
32: /**
33: * Ajout d'un projet SalomeTMF
34: * @param name
35: * @param description
36: * @param loginAdmin
37: */
38: public void addProject(String name, String description,
39: String loginAdmin);
40:
41: /**
42: * Ajout d'un projet SalomeTMF
43: * @param name
44: * @param description
45: * @param loginAdmin
46: * @param fromProject
47: * @param suite
48: * @param campagne
49: * @param users
50: * @param groupe
51: */
52: public void addProject(String name, String description,
53: String loginAdmin, String fromProject, boolean suite,
54: boolean campagne, boolean users, boolean groupe);
55:
56: /**
57: * Ajout d'un utilisateur SalomeTMF, en lui associant un administrateur ainsi que les groupes
58: * d'utilisateurs par defaut (l'admin appartiendra au groupe par defaut "Administrateur")
59: * @param login
60: * @param name
61: * @param firstName
62: * @param desc
63: * @param email
64: * @param tel
65: * @param pwd
66: */
67: public void addPerson(String login, String name, String firstName,
68: String desc, String email, String tel, String pwd);
69:
70: }
|