root/trunk/src/xml/fwk-cfg-info.xml

Revision 1541, 2.6 kB (checked in by amandel, 3 years ago)

Remove traces of concrete company name.

  • Property svn:mime-type set to text/xml
  • Property svn:eol-style set to native
Line 
1<!-- =============================================
2     Configuration Service
3     ============================================= -->
4<group
5   id="5"
6   name="Configuration Service"
7   short-name="CFG"
8   package="org.jcoderz.commons.config"
9   base-exception="org.jcoderz.commons.BaseException"
10   base-runtime-exception="org.jcoderz.commons.BaseRuntimeException"
11   service="ALL">
12   <message
13      id="1"
14      name="CONFIGURATION_INITIALIZATION_FAILED"
15      level="SEVERE"
16      business-impact="MIDDLE"
17      base-exception="org.jcoderz.commons.config.ConfigurationServiceRuntimeException">
18      <text>
19         Failed to initialize Configuration Service.
20      </text>
21      <solution>
22         Review the nested exception(s) to determine the problem that led
23         to the error condition. If appropriate, contact the support.
24      </solution>
25   </message>
26   <message
27      id="2"
28      name="CONFIGURATION_VALUE_NOT_FOUND"
29      level="SEVERE"
30      business-impact="MIDDLE"
31      base-exception="org.jcoderz.commons.config.ConfigurationServiceRuntimeException">
32      <text>
33         Could not read config value for {KEY}.
34      </text>
35      <solution>
36         Review the nested exception(s) to determine the problem that led
37         to the error condition. If appropriate, contact the support.
38      </solution>
39   </message>
40   <message
41      id="3"
42      name="CONFIGURATION_VALUE_READ"
43      level="CONFIG"
44      category="FLOW"
45      business-impact="NONE">
46      <text>Read config value for {KEY} = ''{VALUE}''.</text>
47   </message>
48   <message
49      id="4"
50      name="CONFIGURATION_TYPE_CONVERSION_FAILED"
51      level="SEVERE"
52      business-impact="MIDDLE"
53      base-exception="org.jcoderz.commons.config.ConfigurationServiceRuntimeException">
54      <text>Config value {VALUE} for key {org.jcoderz.commons.config.ConfigurationKey:KEY}
55          could not be converted to type {TYPE}.
56      </text>
57      <solution>
58         Review the nested exception(s) to determine the problem that led
59         to the error condition. If appropriate, contact the support.
60      </solution>
61   </message>
62   <message
63      id="5"
64      name="CONFIGURATION_FACTORY_FAILED"
65      level="SEVERE"
66      business-impact="MIDDLE"
67      base-exception="org.jcoderz.commons.config.ConfigurationServiceRuntimeException">
68      <text>
69         Failed to create ServiceConfiguration instance for service
70         {CLASSNAME}.
71      </text>
72      <solution>
73         Review the nested exception(s) to determine the problem that led
74         to the error condition. If appropriate, contact the support.
75      </solution>
76   </message>
77</group>
Note: See TracBrowser for help on using the browser.