org.activecomponents.webservice.messages.BaseMessage Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jadex-platform-webservice-websocket Show documentation
Show all versions of jadex-platform-webservice-websocket Show documentation
Jadex websocket webservice implementation
package org.activecomponents.webservice.messages;
/**
* Base message holding a callid as common property.
*/
public class BaseMessage
{
/** The callid. */
protected String callid;
/**
* Create a new message.
*/
public BaseMessage()
{
}
/**
* Create a new message.
*/
public BaseMessage(String callid)
{
this.callid = callid;
}
/**
* Get the callid.
* @return Tthe callid
*/
public String getCallid()
{
return callid;
}
/**
* Set the callid.
* @param callid The callid to set
*/
public void setCallid(String callid)
{
this.callid = callid;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy