eu.semaine.jms.sender
Class EmmaSender

java.lang.Object
  extended by eu.semaine.jms.IOBase
      extended by eu.semaine.jms.sender.Sender
          extended by eu.semaine.jms.sender.XMLSender
              extended by eu.semaine.jms.sender.EmmaSender

public class EmmaSender
extends XMLSender

An abstraction of Sender for state data.

Author:
marc

Nested Class Summary
 
Nested classes/interfaces inherited from class eu.semaine.jms.IOBase
IOBase.Event
 
Field Summary
 
Fields inherited from class eu.semaine.jms.sender.Sender
datatype, period, producer, source
 
Fields inherited from class eu.semaine.jms.IOBase
connection, isConnectionStarted, jmsPassword, jmsUrl, jmsUser, session, topic, topicName
 
Constructor Summary
EmmaSender(java.lang.String topicName, java.lang.String source)
          Create a new Sender to the given topic on the default JMS server.
EmmaSender(java.lang.String jmsUrl, java.lang.String jmsUser, java.lang.String jmsPassword, java.lang.String topicName, java.lang.String source)
          Create a new Sender to the given topic on the given JMS server.
 
Method Summary
 
Methods inherited from class eu.semaine.jms.sender.XMLSender
fillMessageProperties, sendXML, sendXML, sendXML, sendXML
 
Methods inherited from class eu.semaine.jms.sender.Sender
fillMessageProperties, getDatatype, getPeriod, getSource, getTimeToLive, initialise, isEventBased, isPeriodic, main, sendTextMessage, sendTextMessage, sendTextMessage, sendTextMessage, setEventBased, setPeriodic, setTimeToLive
 
Methods inherited from class eu.semaine.jms.IOBase
getConnection, getJMSUrl, getSession, getTopic, getTopicName, startConnection
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

EmmaSender

public EmmaSender(java.lang.String topicName,
                  java.lang.String source)
           throws javax.jms.JMSException
Create a new Sender to the given topic on the default JMS server. The default JMS server is determined as follows: Datatype and source will be sent with every message.

Parameters:
topic - the name of the topic to send to.
source - the name of the component sending the data.
Throws:
java.lang.NullPointerException - if any of the parameters topicName, datatype, or source are null.
javax.jms.JMSException

EmmaSender

public EmmaSender(java.lang.String jmsUrl,
                  java.lang.String jmsUser,
                  java.lang.String jmsPassword,
                  java.lang.String topicName,
                  java.lang.String source)
           throws javax.jms.JMSException
Create a new Sender to the given topic on the given JMS server. Datatype and source will be sent with every message.

Parameters:
jmsUrl - the url where to contact the JMS server
jmsUser - the username to use (can be null)
jmsPassword - the password to use (can be null)
topic - the name of the topic to send to.
datatype - the name of the type of data being sent.
source - the name of the component sending the data.
Throws:
javax.jms.JMSException
java.lang.NullPointerException - if any of the parameters jmsUrl, topicName, datatype, or source are null.