KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > xdoclet > modules > bea > wls > ejb > XDocletModulesBeaWlsEjbMessages


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

5 package xdoclet.modules.bea.wls.ejb;
6
7 /**
8  * @author Ara Abrahamian (ara_e_w@yahoo.com)
9  * @created May 31, 2002
10  * @version $Revision: 1.5 $
11  */

12 public final class XDocletModulesBeaWlsEjbMessages
13 {
14     /**
15      * @msg.bundle msg="You should only specify weblogic:relation join-table-name=\"blabla\" in one of the methods
16      * defining the relationship."
17      */

18     public final static String JavaDoc JOIN_TABLE_NAME_ONLY_ONE_SIDE = "JOIN_TABLE_NAME_ONLY_ONE_SIDE";
19
20     /**
21      * @msg.bundle msg="The relation {0} seems to be many-to-many (m:n). You should therefore specify
22      * weblogic:relation join-table-name=\"blabla\"."
23      */

24     public final static String JavaDoc JOIN_TABLE_NAME_NEEDED = "JOIN_TABLE_NAME_NEEDED";
25
26     /**
27      * @msg.bundle msg="Using a different persistence engine than weblogic's own: {0}"
28      */

29     public final static String JavaDoc NON_WEBLOGIC_PERSISTENCE = "NON_WEBLOGIC_PERSISTENCE";
30
31     /**
32      * @msg.bundle msg="Can''t guess what is the related pk column when there is more than one weblogic.column-map"
33      */

34     public final static String JavaDoc CANT_GUESS_PK_FIELD = "CANT_GUESS_PK_FIELD";
35
36     /**
37      * @msg.bundle msg="There {0} bean has a compound key. Please specify pk-field"
38      */

39     public final static String JavaDoc MORE_THAN_ONE_PK_FIELD = "MORE_THAN_ONE_PK_FIELD";
40
41     /**
42      * @msg.bundle msg="There {0} bean doesn''t specify ejb.persistence column-name"
43      */

44     public final static String JavaDoc NO_PK_FIELD = "NO_PK_FIELD";
45
46 }
47
Popular Tags