コード例 #1
0
 public void setJMSCorrelationIDAsBytes(final byte[] correlationID) throws JMSException {
   if (correlationID == null || correlationID.length == 0) {
     throw new JMSException("Please specify a non-zero length byte[]");
   }
   message.putBytesProperty(CORRELATIONID_HEADER_NAME, correlationID);
 }