View Javadoc

1   /*
2    * $Id: AjaxMessages.java 20321 2010-11-24 15:21:24Z dfeist $
3    * --------------------------------------------------------------------------------------
4    * Copyright (c) MuleSoft, Inc.  All rights reserved.  http://www.mulesoft.com
5    *
6    * The software in this package is published under the terms of the CPAL v1.0
7    * license, a copy of which has been included with this distribution in the
8    * LICENSE.txt file.
9    */
10  package org.mule.transport.ajax.i18n;
11  
12  import org.mule.config.i18n.Message;
13  import org.mule.config.i18n.MessageFactory;
14  
15  /**
16   * i18n messages for the Ajax transport
17   */
18  public class AjaxMessages extends MessageFactory
19  {
20      private static final AjaxMessages FACTORY = new AjaxMessages();
21  
22      private static final String BUNDLE_PATH = getBundlePath("ajax");
23  
24      public static Message failedToStartAjaxServlet()
25      {
26          return FACTORY.createMessage(BUNDLE_PATH, 1);
27      }
28  
29      public static Message noConnectorForProtocol(String protocol)
30      {
31          return FACTORY.createMessage(BUNDLE_PATH, 2, protocol);
32      }
33  
34      public static Message noAjaxConnectorWithName(String name, String param)
35      {
36          return FACTORY.createMessage(BUNDLE_PATH, 3, name, param);
37      }
38  
39      public static Message serverUrlNotDefined()
40      {
41          return FACTORY.createMessage(BUNDLE_PATH, 4);
42      }
43  }