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, Vincent Pautret, Marche Mikael
20: *
21: * Contact: mikael.marche@rd.francetelecom.com
22: */
23:
24: package org.objectweb.salome_tmf.data;
25:
26: /**
27: * Interface regroupant les constantes utilis?es dans Voice Testing
28: */
29:
30: public interface DataConstants {
31:
32: /**
33: * Valeur relative au groupe
34: */
35: static final public int GROUP = 100;
36:
37: static final public int CAMPAIGN = 10;
38: /**
39: * Valeur relative à une famille
40: */
41: static final public int FAMILY = 11;
42:
43: static final public int TESTLIST = 12;
44:
45: static final public int TEST = 13;
46:
47: static final public int ACTION = 14;
48: /**
49: * Valeur relative à un paramètre
50: */
51: static final public int PARAMETER = 15;
52:
53: /**
54: * Valeur relative à une exécution
55: */
56: static final public int EXECUTION = 16;
57:
58: /**
59: * Valeur relative au résultat d'exécution
60: */
61: static final public int EXECUTION_RESULT = 17;
62:
63: /**
64: * Valeur relative au résultat d'exécution d'un test
65: */
66: static final public int EXECUTION_RESULT_TEST = 18;
67:
68: static final public int MANUAL_TEST = 19;
69:
70: static final public int AUTOMATIC_TEST = 20;
71:
72: static final public int ENVIRONMENT = 21;
73:
74: static final public int PROJECT = 22;
75:
76: // Constantes pour les projets
77:
78: /**
79: * Projet normal
80: */
81: static final public int NORMALSTATUS = 200;
82:
83: /**
84: * Projet gel?
85: */
86: static final public int FREEZESTATUS = 201;
87:
88: /**
89: * Projet utilis? en local
90: */
91: static final public int USEDINLOCALSTATUS = 202;
92:
93: final static public int SMALL_SIZE_FOR_ATTACH = 75;
94:
95: final static public int NORMAL_SIZE_FOR_ATTACH = 150;
96:
97: final static public String PARAM_VALUE_FROM_ENV = "$(env_value)$";
98: } // Fin de l'interface Constants
|