Add bulk API to gizmo
[aai/gizmo.git] / src / main / java / org / openecomp / crud / logging / CrudServiceMsgs.java
1 /**
2  * ============LICENSE_START=======================================================
3  * Gizmo
4  * ================================================================================
5  * Copyright © 2017 AT&T Intellectual Property.
6  * Copyright © 2017 Amdocs
7  * All rights reserved.
8  * ================================================================================
9  * Licensed under the Apache License, Version 2.0 (the "License");
10  * you may not use this file except in compliance with the License.
11  * You may obtain a copy of the License at
12  *
13  *    http://www.apache.org/licenses/LICENSE-2.0
14  *
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  * ============LICENSE_END=========================================================
21  *
22  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
23  */
24 package org.openecomp.crud.logging;
25
26 import com.att.eelf.i18n.EELFResourceManager;
27
28 import org.openecomp.cl.eelf.LogMessageEnum;
29
30 public enum CrudServiceMsgs implements LogMessageEnum {
31
32   /**
33    * Received request {0} {1} from {2}.  Sending response: {3}
34    *
35    * <p>Arguments:
36    * {0} = operation
37    * {1} = target URL
38    * {2} = source
39    * {3} = response code
40    */
41   PROCESS_REST_REQUEST,
42
43   INVALID_OXM_FILE,
44   INVALID_OXM_DIR,
45   OXM_FILE_CHANGED,
46   TRANSACTION,
47
48   /**
49    * Successfully loaded schema: {0}
50    *
51    * <p>Arguments:
52    * {0} = oxm filename
53    */
54   LOADED_OXM_FILE,
55
56   /**
57    * Unable to load OXM schema: {0}
58    *
59    * <p>Arguments:
60    * {0} = error
61    */
62   OXM_LOAD_ERROR,
63
64   /**
65    * Stopping ChampDAO...
66    *
67    * <p>Arguments:
68    */
69   STOPPING_CHAMP_DAO,
70
71   /**
72    * Failure instantiating CRUD Rest Service.  Cause: {0}
73    *
74    * <p>Arguments:
75    * {0} - Failure cause.
76    */
77   INSTANTIATE_AUTH_ERR,
78
79   /**
80    * Arguments:
81    * {0} Opertaion
82    * {1} URI
83    * {2} = Exception
84    */
85   EXCEPTION_DURING_METHOD_CALL;
86
87
88   /**
89    * Static initializer to ensure the resource bundles for this class are loaded...
90    */
91   static {
92     EELFResourceManager.loadMessageBundle("logging/CrudServiceMsgs");
93   }
94 }