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

cz.mmsparams.api.websocket.messages.DevMessage Maven / Gradle / Ivy

The newest version!
package cz.mmsparams.api.websocket.messages;

import java.io.Serializable;

import cz.mmsparams.api.websocket.WebSocketMessageBase;

public class DevMessage extends WebSocketMessageBase implements Serializable
{
    private String testContent;

    public String getTestContent()
    {
        return testContent;
    }

    public void setTestContent(String testContent)
    {
        this.testContent = testContent;
    }

    @Override
    public String toString()
    {
        return "DevMessage{" +
                "testContent='" + testContent + '\'' +
                "} " + super.toString();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy