org.activecomponents.webservice.messages.ServiceUnprovideMessage 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;
import jadex.bridge.service.IServiceIdentifier;
/**
* Message for unproviding a service.
*/
public class ServiceUnprovideMessage extends BaseMessage
{
/** The service id of the service to invoke. */
protected IServiceIdentifier sid;
/**
* Create a new command.
*/
public ServiceUnprovideMessage()
{
}
/**
* Create a new command.
* @param serviceId The serviceid;
*/
public ServiceUnprovideMessage(String callid, IServiceIdentifier serviceid)
{
super(callid);
this.sid = serviceid;
}
/**
* Get the serviceId.
* @return Tthe serviceId
*/
public IServiceIdentifier getServiceId()
{
return sid;
}
/**
* Set the serviceId.
* @param serviceId The serviceId to set
*/
public void setServiceId(IServiceIdentifier serviceid)
{
this.sid = serviceid;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy