/* * JBoss, Home of Professional Open Source * Copyright 2005-2008, Red Hat Middleware LLC, and individual contributors * by the @authors tag. See the copyright.txt in the distribution for a * full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation; either version 2.1 of * the License, or (at your option) any later version. * * This software is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this software; if not, write to the Free * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA * 02110-1301 USA, or see the FSF site: http://www.fsf.org. */ package org.jboss.test.messaging.jms.message; import java.util.Collections; import java.util.Enumeration; import java.util.HashMap; import java.util.Map; import javax.jms.DeliveryMode; import javax.jms.Destination; import javax.jms.JMSException; import javax.jms.Message; import org.jboss.messaging.core.logging.Logger; /** * Foreign message implementation. Used for testing only. * * @author <a href="mailto:ovidiu@feodorov.com">Ovidiu Feodorov</a> * @version <tt>$Revision$</tt> * * $Id$ */ public class SimpleJMSMessage implements Message { // Constants ----------------------------------------------------- private static final Logger log = Logger.getLogger(SimpleJMSMessage.class); // Static -------------------------------------------------------- // Attributes ---------------------------------------------------- private boolean ignoreSetDestination; // Constructors -------------------------------------------------- public SimpleJMSMessage() { properties.put("JMSXDeliveryCount", new Integer(0)); } /* * This constructor is used to simulate an activemq message in which the set of the destination is ignored after receipt. */ public SimpleJMSMessage(Destination dest) { this(); this.ignoreSetDestination = true; this.destination = dest; } // Message implementation ---------------------------------------- private String messageID; public String getJMSMessageID() throws JMSException { return messageID; } public void setJMSMessageID(String id) throws JMSException { messageID = id; } private long timestamp; public long getJMSTimestamp() throws JMSException { return timestamp; } public void setJMSTimestamp(long timestamp) throws JMSException { this.timestamp = timestamp; } // // TODO Is this really the spec? // private byte[] correlationIDBytes; private String correlationIDString; private boolean isCorrelationIDBytes; public byte[] getJMSCorrelationIDAsBytes() throws JMSException { if (!isCorrelationIDBytes) { throw new JMSException("CorrelationID is a String for this message"); } return correlationIDBytes; } public void setJMSCorrelationIDAsBytes(byte[] correlationID) throws JMSException { if (correlationID == null || correlationID.length == 0) { throw new JMSException("Please specify a non-zero length byte[]"); } correlationIDBytes = correlationID; isCorrelationIDBytes = true; } public void setJMSCorrelationID(String correlationID) throws JMSException { this.correlationIDString = correlationID; isCorrelationIDBytes = false; } public String getJMSCorrelationID() throws JMSException { if (isCorrelationIDBytes) { throw new JMSException("CorrelationID is a byte[] for this message"); } return correlationIDString; } private Destination replyTo; public Destination getJMSReplyTo() throws JMSException { return replyTo; } public void setJMSReplyTo(Destination replyTo) throws JMSException { this.replyTo = replyTo; } private Destination destination; public Destination getJMSDestination() throws JMSException { return destination; } public void setJMSDestination(Destination destination) throws JMSException { if (!this.ignoreSetDestination) { this.destination = destination; } } private int deliveryMode = DeliveryMode.PERSISTENT; public int getJMSDeliveryMode() throws JMSException { return deliveryMode; } public void setJMSDeliveryMode(int deliveryMode) throws JMSException { this.deliveryMode = deliveryMode; } private boolean redelivered; public boolean getJMSRedelivered() throws JMSException { return redelivered; } public void setJMSRedelivered(boolean redelivered) throws JMSException { this.redelivered = redelivered; } private String type; public String getJMSType() throws JMSException { return type; } public void setJMSType(String type) throws JMSException { this.type = type; } private long expiration; public long getJMSExpiration() throws JMSException { return expiration; } public void setJMSExpiration(long expiration) throws JMSException { this.expiration = expiration; } private int priority; public int getJMSPriority() throws JMSException { return priority; } public void setJMSPriority(int priority) throws JMSException { this.priority = priority; } private Map properties = new HashMap(); public void clearProperties() throws JMSException { properties.clear(); } public boolean propertyExists(String name) throws JMSException { return properties.containsKey(name); } public boolean getBooleanProperty(String name) throws JMSException { Object prop = properties.get(name); if (!(prop instanceof Boolean)) { throw new JMSException("Not boolean"); } return ((Boolean)properties.get(name)).booleanValue(); } public byte getByteProperty(String name) throws JMSException { Object prop = properties.get(name); if (!(prop instanceof Byte)) { throw new JMSException("Not byte"); } return ((Byte)properties.get(name)).byteValue(); } public short getShortProperty(String name) throws JMSException { Object prop = properties.get(name); if (!(prop instanceof Short)) { throw new JMSException("Not short"); } return ((Short)properties.get(name)).shortValue(); } public int getIntProperty(String name) throws JMSException { Object prop = properties.get(name); if (!(prop instanceof Integer)) { throw new JMSException("Not int"); } return ((Integer)properties.get(name)).intValue(); } public long getLongProperty(String name) throws JMSException { Object prop = properties.get(name); if (!(prop instanceof Long)) { throw new JMSException("Not long"); } return ((Long)properties.get(name)).longValue(); } public float getFloatProperty(String name) throws JMSException { Object prop = properties.get(name); if (!(prop instanceof Float)) { throw new JMSException("Not float"); } return ((Float)properties.get(name)).floatValue(); } public double getDoubleProperty(String name) throws JMSException { Object prop = properties.get(name); if (!(prop instanceof Double)) { throw new JMSException("Not double"); } return ((Double)properties.get(name)).doubleValue(); } public String getStringProperty(String name) throws JMSException { Object prop = properties.get(name); if (!(prop instanceof String)) { throw new JMSException("Not string"); } return (String)properties.get(name); } public Object getObjectProperty(String name) throws JMSException { return properties.get(name); } public Enumeration getPropertyNames() throws JMSException { return Collections.enumeration(properties.keySet()); } public void setBooleanProperty(String name, boolean value) throws JMSException { properties.put(name, new Boolean(value)); } public void setByteProperty(String name, byte value) throws JMSException { properties.put(name, new Byte(value)); } public void setShortProperty(String name, short value) throws JMSException { properties.put(name, new Short(value)); } public void setIntProperty(String name, int value) throws JMSException { properties.put(name, new Integer(value)); } public void setLongProperty(String name, long value) throws JMSException { properties.put(name, new Long(value)); } public void setFloatProperty(String name, float value) throws JMSException { properties.put(name, new Float(value)); } public void setDoubleProperty(String name, double value) throws JMSException { properties.put(name, new Double(value)); } public void setStringProperty(String name, String value) throws JMSException { properties.put(name, value); } public void setObjectProperty(String name, Object value) throws JMSException { properties.put(name, value); } public void acknowledge() throws JMSException { } public void clearBody() throws JMSException { } // Public -------------------------------------------------------- // Package protected --------------------------------------------- // Protected ----------------------------------------------------- // Private ------------------------------------------------------- // Inner classes ------------------------------------------------- }