1
2
3
4
5
6
7
8
9
10
11 package org.mule.transport.ejb.i18n;
12
13 import org.mule.config.i18n.Message;
14 import org.mule.config.i18n.MessageFactory;
15
16 public class EjbMessages extends MessageFactory
17 {
18 private static final EjbMessages factory = new EjbMessages();
19
20 private static final String BUNDLE_PATH = getBundlePath("ejb");
21
22 public static Message ejbObjectMissingCreate(Object key)
23 {
24 return factory.createMessage(BUNDLE_PATH, 3);
25 }
26
27 public static Message ejbKeyRefNotValid(Object key)
28 {
29 return factory.createMessage(BUNDLE_PATH, 4);
30 }
31 }
32
33