Example usage for javax.jms MessageListener interface-usage

List of usage examples for javax.jms MessageListener interface-usage

Introduction

In this page you can find the example usage for javax.jms MessageListener interface-usage.

Usage

From source file Chat.java

public class Chat implements javax.jms.MessageListener {
    private static final String APP_TOPIC = "jms.samples.chat";
    private static final String DEFAULT_USER = "Chatter";
    private static final String DEFAULT_BROKER_NAME = "tcp://localhost:61616";
    private static final String DEFAULT_PASSWORD = "password";

From source file org.wso2.carbon.registry.caching.invalidator.connection.JMSNotification.java

public class JMSNotification implements InvalidNotification, MessageListener {

    // Setup the pub/sub connection, session
    // Send the msg (byte stream)
    private static Connection connection = null;

From source file org.apache.falcon.messaging.JMSMessageConsumer.java

/**
 * Subscribes to the falcon topic for handling retries and alerts.
 */
public class JMSMessageConsumer implements MessageListener, ExceptionListener {
    private static final Logger LOG = LoggerFactory.getLogger(JMSMessageConsumer.class);

From source file eu.domibus.submission.jms.BackendJMSImpl.java

/**
 * TODO: add class description
 */
public class BackendJMSImpl extends AbstractBackendConnector<MapMessage, MapMessage> implements MessageListener {

    private static final Log LOG = LogFactory.getLog(BackendJMSImpl.class);

From source file org.jbpm.bpel.integration.jms.RequestListener.java

/**
 * @author Alejandro Guizar
 * @version $Revision$ $Date: 2008/06/12 08:18:54 $
 */
public class RequestListener implements MessageListener {

From source file be.fedict.eid.pkira.blm.model.mail.MailHandlerBean.java

/**
 * @author hans
 */
@MessageDriven(activationConfig = {
        @ActivationConfigProperty(propertyName = "destinationType", propertyValue = "javax.jms.queue"),
        @ActivationConfigProperty(propertyName = "destination", propertyValue = "mail-queue") })

From source file com.adaptris.core.jms.JmsConsumerImpl.java

/**
 * <p>
 * Contains behaviour common to PTP and PAS JMS message consumers.
 * </p>
 */
public abstract class JmsConsumerImpl extends AdaptrisMessageConsumerImp

From source file org.jbpm.ejb.impl.CommandListenerBean.java

/**
 * This message-driven bean listens for {@link ObjectMessage object messages}
 * containing a command instance. The received commands are 
 * executed by the {@link CommandServiceBean command service} bean, using the
 * local interface.
 * 

From source file com.inkubator.hrm.service.impl.NotificationApproverSmsMessagesListener.java

/**
 *
 * @author rizkykojek
 */
public class NotificationApproverSmsMessagesListener extends IServiceImpl implements MessageListener {

From source file org.kuali.student.enrollment.courseoffering.service.DequeuerCallbackListener.java

/**
 *
 * @author Kuali Student Team
 */
@javax.jws.WebService(serviceName = "SOAPService", portName = "SOAPPort", targetNamespace = CourseOfferingCallbackNamespaceConstants.NAMESPACE, endpointInterface = "org.kuali.student.enrollment.courseoffering.service.CourseOfferingSubscriptionService")
public class DequeuerCallbackListener implements CourseOfferingSubscriptionService, MessageListener {