KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > xdoclet > modules > hibernate > XDocletModulesHibernateMessages


1 /*
2  * Copyright (c) 2001, 2002 The XDoclet team
3  * All rights reserved.
4  */

5 package xdoclet.modules.hibernate;
6
7 /**
8  * @author Sébastien Guimont (sebastieng@sympatico.ca)
9  * @created August 9th, 2002
10  * @version $Revision: 1.12 $
11  * @msg.bundle
12  */

13 public final class XDocletModulesHibernateMessages
14 {
15
16     //~ Instance/static variables ......................................................................................
17
/**
18      * @msg.bundle msg="Generated by XDoclet - Do not edit!"
19      */

20     public final static String JavaDoc DO_NOT_EDIT = "DO_NOT_EDIT";
21
22     /**
23      * @msg.bundle msg="Generating mapping file for {0}."
24      */

25     public final static String JavaDoc GENERATING_HIBERNATE_FOR = "GENERATING_HIBERNATE_FOR";
26     /**
27      * @msg.bundle msg="Generating jboss service descriptor"
28      */

29     public final static String JavaDoc GENERATING_JBOSS_SERVICE_DESCRIPTOR = "GENERATING_JBOSS_SERVICE_DESCRIPTOR";
30
31     /**
32      * @msg.bundle msg="Generating {0} configuration file"
33      */

34     public final static String JavaDoc GENERATING_HIBERNATE_CFG_XML = "GENERATING_HIBERNATE_CFG_XML";
35
36     /**
37      * @msg.bundle msg="JNDI name is required for jboss service"
38      */

39     public final static String JavaDoc JNDI_NAME_REQUIRED = "JNDI_NAME_REQUIRED";
40     /**
41      * @msg.bundle msg="Service name is required for jboss service"
42      */

43     public final static String JavaDoc SERVICE_NAME_REQUIRED = "SERVICE_NAME_REQUIRED";
44     /**
45      * @msg.bundle msg="SQL Dialect is required for jboss service"
46      */

47     public final static String JavaDoc SQL_DIALECT_REQUIRED = "SQL_DIALECT_REQUIRED";
48     /**
49      * @msg.bundle msg="Data source name is required for jboss service"
50      */

51     public final static String JavaDoc DATA_SOURCE_REQUIRED = "DATA_SOURCE_REQUIRED";
52
53     /**
54      * @msg.bundle msg="Either a container or standalone database connection method must be specified for a
55      * hibernate.cfg.xml file."
56      */

57     public final static String JavaDoc DATA_CONNECTION_REQUIRED = "DATA_CONNECTION_REQUIRED";
58
59     /**
60      * @msg.bundle msg="In specifying additional properties for a JNDI context, you also need to specify the JNDI name
61      * of the context."
62      */

63     public final static String JavaDoc JNDI_NAME_FOR_PROPS_REQUIRED = "JNDI_NAME_FOR_PROPS_REQUIRED";
64
65     /**
66      * @msg.bundle msg="Class {0} misses ID property"
67      */

68     public final static String JavaDoc NO_ID_PROPERTY = "NO_ID_PROPERTY";
69
70     /**
71      * @msg.bundle msg="Composite ID property of type {0} is invalid. It has to be serializable and reimplement
72      * equals(Object)"
73      */

74     public final static String JavaDoc WRONG_COMPOSITE_ID = "WRONG_COMPOSITE_ID";
75     /**
76      * @msg.bundle msg="Factory name is required"
77      */

78     public final static String JavaDoc FACTORY_NAME_REQUIRED = "FACTORY_NAME_REQUIRED";
79     /**
80      * @msg.bundle msg="Generating factory class"
81      */

82     public final static String JavaDoc GENERATING_HIBERNATE_FACTORY_CLASS = "GENERATING_HIBERNATE_FACTORY_CLASS";
83 }
84
Popular Tags