
org.mule.module.client.i18n.ClientMessages Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mule-module-client Show documentation
Show all versions of mule-module-client Show documentation
MuleClient is a simple interface for Mule clients to send and receive events from local or remote Mule Servers.
/*
* Copyright (c) MuleSoft, Inc. All rights reserved. http://www.mulesoft.com
* The software in this package is published under the terms of the CPAL v1.0
* license, a copy of which has been included with this distribution in the
* LICENSE.txt file.
*/
package org.mule.module.client.i18n;
import org.mule.config.i18n.Message;
import org.mule.config.i18n.MessageFactory;
public class ClientMessages extends MessageFactory
{
private static final ClientMessages factory = new ClientMessages();
private static final String BUNDLE_PATH = getBundlePath("client");
@Deprecated
public static Message failedToDispatchClientEvent()
{
return factory.createMessage(BUNDLE_PATH, 1);
}
@Deprecated
public static Message noArgsForProxy()
{
return factory.createMessage(BUNDLE_PATH, 2);
}
@Deprecated
public static Message managerIsAlreadyConfigured()
{
return factory.createMessage(BUNDLE_PATH, 3);
}
@Deprecated
public static Message unsupportedServerWireForat(String wireFormat)
{
return factory.createMessage(BUNDLE_PATH, 4, wireFormat);
}
@Deprecated
public static Message failedToDispatchActionNoResponseFromServer(String action, int timeout)
{
return factory.createMessage(BUNDLE_PATH, 5, action, new Integer(timeout));
}
@Deprecated
public static Message failedToDeserializeHandshakeFromServer()
{
return factory.createMessage(BUNDLE_PATH, 6);
}
@Deprecated
public static Message noSuchFlowConstruct(String name)
{
return factory.createMessage(BUNDLE_PATH, 7, name);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy