Package jade.domain.JADEAgentManagement
Class UninstallMTP
- java.lang.Object
-
- jade.domain.JADEAgentManagement.UninstallMTP
-
- All Implemented Interfaces:
AgentAction,Concept,ContentElement,Term,Serializable,Serializable
public class UninstallMTP extends Object implements AgentAction
This class represents theuninstall-MTPaction of theJADE-agent-management ontology. This action can be requested to the JADE AMS to uninstall an MTP from a given container.- Version:
- $Date$ $Revision$
- Author:
- Giovanni Rimassa - Universita' di Parma
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description UninstallMTP()Default constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetAddress()Retrieve the value of theaddressslot of this action, containing the address URL of the MTP to uninstall.ContainerIDgetContainer()Retrieve the value of thecontainerslot of this action, containing the container identifier of the container where the MTP to uninstall is deployed.voidsetAddress(String a)Set theaddressslot of this action.voidsetContainer(ContainerID cid)Set thecontainerslot of this action.
-
-
-
Method Detail
-
setAddress
public void setAddress(String a)
Set theaddressslot of this action.- Parameters:
a- The address URL of the MTP endpoint to uninstall.
-
getAddress
public String getAddress()
Retrieve the value of theaddressslot of this action, containing the address URL of the MTP to uninstall.- Returns:
- The value of the
addressslot, ornullif no value was set.
-
setContainer
public void setContainer(ContainerID cid)
Set thecontainerslot of this action.- Parameters:
cid- The container identifier of the container where the MTP to uninstall is deployed.
-
getContainer
public ContainerID getContainer()
Retrieve the value of thecontainerslot of this action, containing the container identifier of the container where the MTP to uninstall is deployed.- Returns:
- The value of the
containerslot, ornullif no value was set.
-
-