package com.mossle.simulator.jms; import java.util.Enumeration; import javax.jms.Destination; import javax.jms.JMSException; import javax.jms.Message; public class ProxyMessage implements Message { public String getJMSMessageID() throws JMSException { return null; } public void setJMSMessageID(String id) throws JMSException { } public long getJMSTimestamp() throws JMSException { return 0L; } public void setJMSTimestamp(long timestamp) throws JMSException { } public byte[] getJMSCorrelationIDAsBytes() throws JMSException { return null; } public void setJMSCorrelationIDAsBytes(byte[] correlationID) throws JMSException { } public void setJMSCorrelationID(String correlationID) throws JMSException { } public String getJMSCorrelationID() throws JMSException { return null; } public Destination getJMSReplyTo() throws JMSException { return null; } public void setJMSReplyTo(Destination replyTo) throws JMSException { } public Destination getJMSDestination() throws JMSException { return null; } public void setJMSDestination(Destination destination) throws JMSException { } public int getJMSDeliveryMode() throws JMSException { return 0; } public void setJMSDeliveryMode(int deliveryMode) throws JMSException { } public boolean getJMSRedelivered() throws JMSException { return false; } public void setJMSRedelivered(boolean redelivered) throws JMSException { } public String getJMSType() throws JMSException { return null; } public void setJMSType(String type) throws JMSException { } public long getJMSExpiration() throws JMSException { return 0L; } public void setJMSExpiration(long expiration) throws JMSException { } public int getJMSPriority() throws JMSException { return 0; } public void setJMSPriority(int priority) throws JMSException { } public void clearProperties() throws JMSException { } public boolean propertyExists(String name) throws JMSException { return false; } public boolean getBooleanProperty(String name) throws JMSException { return false; } public byte getByteProperty(String name) throws JMSException { return (byte) 0; } public short getShortProperty(String name) throws JMSException { return (short) 0; } public int getIntProperty(String name) throws JMSException { return 0; } public long getLongProperty(String name) throws JMSException { return 0L; } public float getFloatProperty(String name) throws JMSException { return 0F; } public double getDoubleProperty(String name) throws JMSException { return 0D; } public String getStringProperty(String name) throws JMSException { return null; } public Object getObjectProperty(String name) throws JMSException { return null; } public Enumeration getPropertyNames() throws JMSException { return null; } public void setBooleanProperty(String name, boolean value) throws JMSException { } public void setByteProperty(String name, byte value) throws JMSException { } public void setShortProperty(String name, short value) throws JMSException { } public void setIntProperty(String name, int value) throws JMSException { } public void setLongProperty(String name, long value) throws JMSException { } public void setFloatProperty(String name, float value) throws JMSException { } public void setDoubleProperty(String name, double value) throws JMSException { } public void setStringProperty(String name, String value) throws JMSException { } public void setObjectProperty(String name, Object value) throws JMSException { } public void acknowledge() throws JMSException { } public void clearBody() throws JMSException { } }