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

org.activecomponents.webservice.messages.BaseMessage Maven / Gradle / Ivy

There is a newer version: 4.0.267
Show newest version
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