cz.mmsparams.api.websocket.messages.mms.pdus.NotificationIndResponseMessage 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.NotificationIndModel;
public class NotificationIndResponseMessage extends WebSocketMessageBase implements Serializable, IClientBroadcastMessage, IResponseMessage
{
private NotificationIndModel notificationIndModel;
public NotificationIndModel getNotificationIndModel()
{
return notificationIndModel;
}
public void setNotificationIndModel(NotificationIndModel notificationIndModel)
{
this.notificationIndModel = notificationIndModel;
}
@Override
public String toString()
{
return "NotificationIndResponseMessage{" +
"notificationIndModel=" + notificationIndModel +
"} " + super.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy