1
2
3
4
5
6
7
8
9
10
11 package org.mule.transport.soap.axis.i18n;
12
13 import org.mule.config.i18n.Message;
14 import org.mule.config.i18n.MessageFactory;
15
16 public class AxisMessages extends MessageFactory
17 {
18 private static final String BUNDLE_PATH = getBundlePath("axis");
19
20 public static Message objectMustImplementAnInterface(String name)
21 {
22 return createMessage(BUNDLE_PATH, 1, name);
23 }
24
25 public static String serverProviderAndServerConfigConfigured()
26 {
27 return getString(BUNDLE_PATH, 2);
28 }
29
30 public static String clientProviderAndClientConfigConfigured()
31 {
32 return getString(BUNDLE_PATH, 3);
33 }
34 }
35
36