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
index b7c29211133d4beeb625f21a88f7776cf27877c6..39483be5a3cfc6e94e9dbc9f31313598e7027024 100644 (file)
@@ -18,7 +18,7 @@ package org.splat.common.properties;
 public enum MessageKeyEnum {
        
        /**
-        * Lock reference already exists for user {2}.
+        * Lock reference already exists for user {0}.
         */
        LCK_000001("LCK-000001"),
        /**
@@ -26,21 +26,104 @@ public enum MessageKeyEnum {
         */
        LCK_000002("LCK-000002"),
        /**
-        * Lock reference protected and can be only deleted or updated by user {2}.
+        * Lock reference protected and can be only deleted or updated by user {0}.
         */
        LCK_000003("LCK-000003"),
        /**
-        * Lock reference is timeout and could have been modified by user {2}.
+        * Lock reference is timeout and could have been modified by user {0}.
         */
-       LCK_000004("LCK-000004");
-       
+       LCK_000004("LCK-000004"),
+       /**
+        * Unable to re-index the study #{0}, reason: {1}.
+        */
+       STD_000001("STD-000001"),
+       /**
+        * The study #{0} is not found.
+        */
+       STD_000002("STD-000002"),
+       /**
+        * Scenario doesn't contain the step number #{0}.
+        */
+       SCN_000001("SCN-000001"),
+       /**
+        * Scenario doesn't contain the document #{0}.
+        */
+       SCN_000002("SCN-000002"),
+       /**
+        * The existing file {0} has been deleted when check-in the scenario #{1}.
+        */
+       SCN_000003("SCN-000003"),
+       /**
+        * Can not delete the existing destination file to move file from {0} to {1} when check-in the scenario #{2}.
+        */
+       SCN_000004("SCN-000004"),
+       /**
+        * Can not move file from {0} to {1} when check-in the scenario #{2}.
+        */
+       SCN_000005("SCN-000005"),
+       /**
+        * SCN-000006=Scenario #{0} is not found.
+        */
+       SCN_000006("SCN-000006"),
+       /**
+        * SCN-000007=The user {0} does not participate in the scenario #{1}.
+        */
+       SCN_000007("SCN-000007"),
+       /**
+        * SCN-000008=The scenario #{0} is already checked out by the user {1}.
+        */
+       SCN_000008("SCN-000008"),
+       /**
+        * USR-000001=User {0} is not found in the database.
+        */
+       USR_000001("USR-000001"),
+       /**
+        * Simulation context type "{0}" already exists.
+        */
+       KNT_000001("KNT-000001"),
+       /**
+        * Simulation context type "{0}" already exists.
+        */
+       SCT_000001("SCT-000001"),
+       /**
+        * Simulation context type name could not be blank.
+        */
+       SCT_000002("SCT-000002"),
+       /**
+        * Document type "{0}" already exists.
+        */
+       DCT_000001("DCT-000001"),
+       /**
+        * Can not delete the document "{0}" because it is used by other documents.
+        */
+       DCT_000002("DCT-000002"),
+       /**
+        * DCT-000003=Can not save a document in {0} state. Check the validation cycle.
+        */
+       DCT_000003("DCT-000003"),
+       /**
+        * DCT-000004=The source file can not be replaced. The document must be external or in In-Work state.
+        */
+       DCT_000004("DCT-000004"),
+       /**
+        * DCT-000005=Document checked in by {0}.
+        */
+       DCT_000005("DCT-000005"),
+       /**
+        * Parameter {0} is invalid with value: {1}.
+        */
+       PRM_000001("PRM-000001"),
+       /**
+        * Incompatible data: X-units or Y-units are not the same for all comparable studies.
+        */
+       IDT_000001("IDT-000001");
        /**
        * Value.
        */
        private final String _value;
                
        /**
-       * The enum contructor with param(s).
+       * The enum constructor with param(s).
        * @param value The value
        */
        MessageKeyEnum(final String value) {