Salome HOME
Fix for generating a description for version relation during checkin.
[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          * The study #{0} is not found.
42          */
43         STD_000002("STD-000002"),
44         /**
45          * Scenario doesn't contain the step number #{0}.
46          */
47         SCN_000001("SCN-000001"),
48         /**
49          * Scenario doesn't contain the document #{0}.
50          */
51         SCN_000002("SCN-000002"),
52         /**
53          * The existing file {0} has been deleted when check-in the scenario #{1}.
54          */
55         SCN_000003("SCN-000003"),
56         /**
57          * Can not delete the existing destination file to move file from {0} to {1} when check-in the scenario #{2}.
58          */
59         SCN_000004("SCN-000004"),
60         /**
61          * Can not move file from {0} to {1} when check-in the scenario #{2}.
62          */
63         SCN_000005("SCN-000005"),
64         /**
65          * SCN-000006=Scenario #{0} is not found.
66          */
67         SCN_000006("SCN-000006"),
68         /**
69          * SCN-000007=The user {0} does not participate in the scenario #{1}.
70          */
71         SCN_000007("SCN-000007"),
72         /**
73          * SCN-000008=The scenario #{0} is already checked out by the user {1}.
74          */
75         SCN_000008("SCN-000008"),
76         /**
77          * USR-000001=User {0} is not found in the database.
78          */
79         USR_000001("USR-000001"),
80         /**
81          * Simulation context type "{0}" already exists.
82          */
83         KNT_000001("KNT-000001"),
84         /**
85          * Simulation context type "{0}" already exists.
86          */
87         SCT_000001("SCT-000001"),
88         /**
89          * Simulation context type name could not be blank.
90          */
91         SCT_000002("SCT-000002"),
92         /**
93          * Document type "{0}" already exists.
94          */
95         DCT_000001("DCT-000001"),
96         /**
97          * Can not delete the document "{0}" because it is used by other documents.
98          */
99         DCT_000002("DCT-000002"),
100         /**
101          * DCT-000003=Can not save a document in {0} state. Check the validation cycle.
102          */
103         DCT_000003("DCT-000003"),
104         /**
105          * DCT-000004=The source file can not be replaced. The document must be external or in In-Work state.
106          */
107         DCT_000004("DCT-000004"),
108         /**
109          * DCT-000005=Document checked in by {0}.
110          */
111         DCT_000005("DCT-000005"),
112         /**
113          * Parameter {0} is invalid with value: {1}.
114          */
115         PRM_000001("PRM-000001"),
116         /**
117          * Incompatible data: X-units or Y-units are not the same for all comparable studies.
118          */
119         IDT_000001("IDT-000001");
120         /**
121         * Value.
122         */
123         private final String _value;
124                 
125         /**
126         * The enum constructor with param(s).
127         * @param value The value
128         */
129         MessageKeyEnum(final String value) {
130                 this._value = value;
131         }
132          
133         /** 
134         * {@inheritDoc}
135         * @see java.lang.Enum#toString()
136         */
137         @Override
138         public String toString() {
139                 return this._value;
140         }
141
142 }