cz.mmsparams.api.websocket.messages.DevMessage Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of MmsParamsAPI Show documentation
Show all versions of MmsParamsAPI Show documentation
Common library for MmsParams system
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