Salome HOME
First version of the Compare the Studies results method.
[tools/siman.git] / Workspace / Siman-Common / src / org / splat / common / properties / MessageKeyEnum.java
1 /*****************************************************************************
2  * Company         OPEN CASCADE
3  * Application     SIMAN
4  * File            $Id$ 
5  * Creation date   03.10.2012
6  * @author         Author: Maria KRUCHININA
7  * @version        Revision: 
8  *****************************************************************************/
9
10 package org.splat.common.properties; 
11
12 /**
13  * Enumeration of all exception's code.
14  * Values are in the src/conf/log-messages.properties file.
15  * @author Maria KRUCHININA
16  *
17  */
18 public enum MessageKeyEnum {
19         
20         /**
21          * Lock reference already exists for user {0}.
22          */
23         LCK_000001("LCK-000001"),
24         /**
25          * Lock reference does not exists.
26          */
27         LCK_000002("LCK-000002"),
28         /**
29          * Lock reference protected and can be only deleted or updated by user {0}.
30          */
31         LCK_000003("LCK-000003"),
32         /**
33          * Lock reference is timeout and could have been modified by user {0}.
34          */
35         LCK_000004("LCK-000004"),
36         /**
37          * Unable to re-index the study #{0}, reason: {1}.
38          */
39         STD_000001("STD-000001"),
40         /**
41          * Scenario doesn't contain the step number #{0}.
42          */
43         SCN_000001("SCN-000001"),
44         /**
45          * Scenario doesn't contain the document #{0}.
46          */
47         SCN_000002("SCN-000002"),
48         /**
49          * The existing file {0} has been deleted when check-in the scenario #{1}.
50          */
51         SCN_000003("SCN-000003"),
52         /**
53          * Can not delete the existing destination file to move file from {0} to {1} when check-in the scenario #{2}.
54          */
55         SCN_000004("SCN-000004"),
56         /**
57          * Can not move file from {0} to {1} when check-in the scenario #{2}.
58          */
59         SCN_000005("SCN-000005"),
60         /**
61          * SCN-000006=Scenario #{0} is not found.
62          */
63         SCN_000006("SCN-000006"),
64         /**
65          * SCN-000007=The user {0} does not participate in the scenario #{1}.
66          */
67         SCN_000007("SCN-000007"),
68         /**
69          * SCN-000008=The scenario #{0} is already checked out by the user {1}.
70          */
71         SCN_000008("SCN-000008"),
72         /**
73          * USR-000001=User {0} is not found in the database.
74          */
75         USR_000001("USR-000001"),
76         /**
77          * Simulation context type "{0}" already exists.
78          */
79         KNT_000001("KNT-000001"),
80         /**
81          * Knowledge element type "{0}" already exists.
82          */
83         SCT_000001("SCT-000001"),
84         /**
85          * Document type "{0}" already exists.
86          */
87         DCT_000001("DCT-000001"),
88         /**
89          * Can not delete the document "{0}" because it is used by other documents.
90          */
91         DCT_000002("DCT-000002"),
92         /**
93          * DCT-000003=Can not save a document in {0} state. Check the validation cycle.
94          */
95         DCT_000003("DCT-000003"),
96         /**
97          * Parameter {0} is invalid with value: {1}.
98          */
99         PRM_000001("PRM-000001"),
100         /**
101          * Incompatible data: X-units or Y-units are not the same for all comparable studies.
102          */
103         IDT_000001("IDT-000001");
104         /**
105         * Value.
106         */
107         private final String _value;
108                 
109         /**
110         * The enum constructor with param(s).
111         * @param value The value
112         */
113         MessageKeyEnum(final String value) {
114                 this._value = value;
115         }
116          
117         /** 
118         * {@inheritDoc}
119         * @see java.lang.Enum#toString()
120         */
121         @Override
122         public String toString() {
123                 return this._value;
124         }
125
126 }