Package org.apache.jmeter.protocol.jms
Class Utils
- java.lang.Object
-
- org.apache.jmeter.protocol.jms.Utils
-
public final class Utils extends Object
Utility methods for JMS protocol. WARNING - the API for this class is likely to change!
-
-
Field Summary
Fields Modifier and Type Field Description static StringDEFAULT_NO_EXPIRYstatic StringDEFAULT_PRIORITY_4
-
Constructor Summary
Constructors Constructor Description Utils()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static voidaddJMSProperties(Message msg, Map<String,Object> map)Set JMS Properties to msgstatic voidclose(Connection closeable, Logger log)static voidclose(MessageConsumer closeable, Logger log)static voidclose(MessageProducer closeable, Logger log)static voidclose(Session closeable, Logger log)static JMSPropertiesconvertArgumentsToJmsProperties(Arguments args)ConvertsArgumentstoJMSPropertiesdefaulting to String type Used to convert version <= 2.10 test plansstatic ConnectiongetConnection(Context ctx, String factoryName)Obtain the queue connection from the context and factory name.static StringgetFromEnvironment(Context context, String key)Get value from Context environment taking into account non fully compliant JNDI implementationsstatic DestinationlookupDestination(Context context, String name)Method will lookup a given destination (topic/queue) using JNDI.static StringBuildermessageProperties(StringBuilder sb, Message msg)static StringmessageProperties(Message msg)static StringBuilderrequestHeaders(StringBuilder sb, Message msg)
-
-
-
Field Detail
-
DEFAULT_PRIORITY_4
public static final String DEFAULT_PRIORITY_4
- See Also:
- Constant Field Values
-
DEFAULT_NO_EXPIRY
public static final String DEFAULT_NO_EXPIRY
- See Also:
- Constant Field Values
-
-
Method Detail
-
close
public static void close(MessageConsumer closeable, Logger log)
-
close
public static void close(Session closeable, Logger log)
-
close
public static void close(Connection closeable, Logger log)
-
close
public static void close(MessageProducer closeable, Logger log)
-
messageProperties
public static String messageProperties(Message msg)
-
messageProperties
public static StringBuilder messageProperties(StringBuilder sb, Message msg)
-
requestHeaders
public static StringBuilder requestHeaders(StringBuilder sb, Message msg)
-
lookupDestination
public static Destination lookupDestination(Context context, String name) throws NamingException
Method will lookup a given destination (topic/queue) using JNDI.- Parameters:
context- context to use for lookupname- the destination name- Returns:
- the destination, never null
- Throws:
NamingException- if the name cannot be found as a Destination
-
getFromEnvironment
public static final String getFromEnvironment(Context context, String key) throws NamingException
Get value from Context environment taking into account non fully compliant JNDI implementations- Parameters:
context- context to usekey- key to lookup in contexts environment- Returns:
- String or
nullif context.getEnvironment() is not compliant - Throws:
NamingException- if a naming problem occurs while getting the environment
-
getConnection
public static Connection getConnection(Context ctx, String factoryName) throws JMSException, NamingException
Obtain the queue connection from the context and factory name.- Parameters:
ctx- context to usefactoryName- name of the object factory to look up incontext- Returns:
- the queue connection
- Throws:
JMSException- when creation of the connection failsNamingException- when lookup in context fails
-
addJMSProperties
public static void addJMSProperties(Message msg, Map<String,Object> map) throws JMSExceptionSet JMS Properties to msg- Parameters:
msg- Message to operate onmap- Map of Properties to be set on the message- Throws:
JMSException- whenmsgthrows aJMSExceptionwhile the properties get set
-
convertArgumentsToJmsProperties
public static final JMSProperties convertArgumentsToJmsProperties(Arguments args)
ConvertsArgumentstoJMSPropertiesdefaulting to String type Used to convert version <= 2.10 test plans- Parameters:
args-Argumentsto be converted- Returns:
- jmsProperties The converted
JMSProperties
-
-