KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > opencms > file > Messages


1 /*
2  * File : $Source: /usr/local/cvs/opencms/src/org/opencms/file/Messages.java,v $
3  * Date : $Date: 2006/05/12 16:05:48 $
4  * Version: $Revision: 1.21 $
5  *
6  * This library is part of OpenCms -
7  * the Open Source Content Mananagement System
8  *
9  * Copyright (c) 2005 Alkacon Software GmbH (http://www.alkacon.com)
10  *
11  * This library is free software; you can redistribute it and/or
12  * modify it under the terms of the GNU Lesser General Public
13  * License as published by the Free Software Foundation; either
14  * version 2.1 of the License, or (at your option) any later version.
15  *
16  * This library is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19  * Lesser General Public License for more details.
20  *
21  * For further information about Alkacon Software GmbH, please see the
22  * company website: http://www.alkacon.com
23  *
24  * For further information about OpenCms, please see the
25  * project website: http://www.opencms.org
26  *
27  * You should have received a copy of the GNU Lesser General Public
28  * License along with this library; if not, write to the Free Software
29  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
30  */

31
32 package org.opencms.file;
33
34 import org.opencms.i18n.A_CmsMessageBundle;
35 import org.opencms.i18n.I_CmsMessageBundle;
36
37 /**
38  * Convenience class to access the localized messages of this OpenCms package.<p>
39  *
40  * @author Achim Westermann
41  * @author Jan Baudisch
42  *
43  * @version $Revision: 1.21 $
44  *
45  * @since 6.0.0
46  */

47 public final class Messages extends A_CmsMessageBundle {
48
49     /** Message constant for key in the resource bundle. */
50     public static final String JavaDoc ERR_BACKUPRESOURCE_2 = "ERR_BACKUPRESOURCE_2";
51
52     /** Message constant for key in the resource bundle. */
53     public static final String JavaDoc ERR_BAD_PROPERTYNAME_4 = "ERR_BAD_PROPERTYNAME_4";
54
55     /** Message constant for key in the resource bundle. */
56     public static final String JavaDoc ERR_BAD_PROPERTYNAME_EMPTY_0 = "ERR_BAD_PROPERTYNAME_EMPTY_0";
57
58     /** Message constant for key in the resource bundle. */
59     public static final String JavaDoc ERR_BAD_RESOURCENAME_4 = "ERR_BAD_RESOURCENAME_4";
60
61     /** Message constant for key in the resource bundle. */
62     public static final String JavaDoc ERR_BAD_RESOURCENAME_DOTS_1 = "ERR_BAD_RESOURCENAME_DOTS_1";
63
64     /** Message constant for key in the resource bundle. */
65     public static final String JavaDoc ERR_BAD_RESOURCENAME_EMPTY_0 = "ERR_BAD_RESOURCENAME_EMPTY_0";
66
67     /** Message constant for key in the resource bundle. */
68     public static final String JavaDoc ERR_EMPTY_SITEROOT_0 = "ERR_EMPTY_SITEROOT_0";
69
70     /** Message constant for key in the resource bundle. */
71     public static final String JavaDoc ERR_FIRSTNAME_EMPTY_0 = "ERR_FIRSTNAME_EMPTY_0";
72
73     /** Message constant for key in the resource bundle. */
74     public static final String JavaDoc ERR_LASTNAME_EMPTY_0 = "ERR_LASTNAME_EMPTY_0";
75
76     /** Message constant for key in the resource bundle. */
77     public static final String JavaDoc ERR_MOVE_SAME_FOLDER_2 = "ERR_MOVE_SAME_FOLDER_2";
78
79     /** Message constant for key in the resource bundle. */
80     public static final String JavaDoc ERR_MOVE_SAME_NAME_1 = "ERR_MOVE_SAME_NAME_1";
81
82     /** Message constant for key in the resource bundle. */
83     public static final String JavaDoc ERR_NONEMPTY_SITEROOT_1 = "ERR_NONEMPTY_SITEROOT_1";
84
85     /** Message constant for key in the resource bundle. */
86     public static final String JavaDoc ERR_NOT_ALLOWED_IN_ONLINE_PROJECT_0 = "ERR_NOT_ALLOWED_IN_ONLINE_PROJECT_0";
87
88     /** Message constant for key in the resource bundle. */
89     public static final String JavaDoc ERR_PROJECTNAME_VALIDATION_0 = "ERR_PROJECTNAME_VALIDATION_0";
90
91     /** Message constant for key in the resource bundle. */
92     public static final String JavaDoc ERR_PROPERTY_FROZEN_1 = "ERR_PROPERTY_FROZEN_1";
93
94     /** Message constant for key in the resource bundle. */
95     public static final String JavaDoc ERR_SECURITY_LOGIN_FAILED_1 = "ERR_SECURITY_LOGIN_FAILED_1";
96
97     /** Message constant for key in the resource bundle. */
98     public static final String JavaDoc ERR_SHOWVERSION_2 = "ERR_SHOWVERSION_2";
99
100     /** Message constant for key in the resource bundle. */
101     public static final String JavaDoc ERR_UNKNOWN_RESOURCE_TYPE_1 = "ERR_UNKNOWN_RESOURCE_TYPE_1";
102
103     /** Name of the used resource bundle. */
104     private static final String JavaDoc BUNDLE_NAME = "org.opencms.file.messages";
105
106     /** Static instance member. */
107     private static final I_CmsMessageBundle INSTANCE = new Messages();
108
109     /**
110      * Hides the public constructor for this utility class.<p>
111      */

112     private Messages() {
113
114         // hide the constructor
115
}
116
117     /**
118      * Returns an instance of this localized message accessor.<p>
119      *
120      * @return an instance of this localized message accessor
121      */

122     public static I_CmsMessageBundle get() {
123
124         return INSTANCE;
125     }
126
127     /**
128      * Returns the bundle name for this OpenCms package.<p>
129      *
130      * @return the bundle name for this OpenCms package
131      */

132     public String JavaDoc getBundleName() {
133
134         return BUNDLE_NAME;
135     }
136 }
137
Popular Tags