All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cz.mmsparams.api.websocket.messages.mms.pdus.NotifyRespIndResponseMessage Maven / Gradle / Ivy

package cz.mmsparams.api.websocket.messages.mms.pdus;

import java.io.Serializable;

import cz.mmsparams.api.interfaces.IClientBroadcastMessage;
import cz.mmsparams.api.interfaces.IResponseMessage;
import cz.mmsparams.api.websocket.WebSocketMessageBase;
import cz.mmsparams.api.websocket.model.mms.pdus.NotifyRespIndModel;

public class NotifyRespIndResponseMessage extends WebSocketMessageBase implements Serializable, IClientBroadcastMessage, IResponseMessage
{
    private NotifyRespIndModel notifyRespIndModel;

    public NotifyRespIndModel getNotifyRespIndModel()
    {
        return notifyRespIndModel;
    }

    public void setNotifyRespIndModel(NotifyRespIndModel notifyRespIndModel)
    {
        this.notifyRespIndModel = notifyRespIndModel;
    }

    @Override
    public String toString()
    {
        return "NotifyRespIndResponseMessage{" +
                "notifyRespIndModel=" + notifyRespIndModel +
                "} " + super.toString();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy