com.alliander.osgp.adapter.protocol.iec61850.infra.messaging.Iec61850LogItemRequestMessageSender.java Source code

Java tutorial

Introduction

Here is the source code for com.alliander.osgp.adapter.protocol.iec61850.infra.messaging.Iec61850LogItemRequestMessageSender.java

Source

/**
 * Copyright 2014-2016 Smart Society Services B.V.
 *
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License.  You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 */
package com.alliander.osgp.adapter.protocol.iec61850.infra.messaging;

import javax.jms.JMSException;
import javax.jms.Message;
import javax.jms.ObjectMessage;
import javax.jms.Session;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.jms.core.JmsTemplate;
import org.springframework.jms.core.MessageCreator;

import com.alliander.osgp.shared.infra.jms.Constants;

public class Iec61850LogItemRequestMessageSender {

    private static final Logger LOGGER = LoggerFactory.getLogger(Iec61850LogItemRequestMessageSender.class);

    @Autowired
    private JmsTemplate iec61850LogItemRequestsJmsTemplate;

    public void send(final Iec61850LogItemRequestMessage iec61850LogItemRequestMessage) {

        LOGGER.debug("Sending Iec61850LogItemRequestMessage");

        this.iec61850LogItemRequestsJmsTemplate.send(new MessageCreator() {
            @Override
            public Message createMessage(final Session session) throws JMSException {
                final ObjectMessage objectMessage = session.createObjectMessage();
                objectMessage.setJMSType(Constants.IEC61850_LOG_ITEM_REQUEST);
                objectMessage.setStringProperty(Constants.IS_INCOMING,
                        iec61850LogItemRequestMessage.isIncoming().toString());
                objectMessage.setStringProperty(Constants.ENCODED_MESSAGE,
                        iec61850LogItemRequestMessage.getEncodedMessage());
                objectMessage.setStringProperty(Constants.DECODED_MESSAGE,
                        iec61850LogItemRequestMessage.getDecodedMessage());
                objectMessage.setStringProperty(Constants.DEVICE_IDENTIFICATION,
                        iec61850LogItemRequestMessage.getDeviceIdentification());
                objectMessage.setStringProperty(Constants.IS_VALID,
                        iec61850LogItemRequestMessage.isValid().toString());
                objectMessage.setIntProperty(Constants.PAYLOAD_MESSAGE_SERIALIZED_SIZE,
                        iec61850LogItemRequestMessage.getPayloadMessageSerializedSize());
                return objectMessage;
            }
        });
    }
}