Package jade.domain.introspection
Class RemovedMTP
- java.lang.Object
-
- jade.domain.introspection.RemovedMTP
-
- All Implemented Interfaces:
Concept,Term,Event,Serializable,Serializable
public class RemovedMTP extends Object implements Event
An introspection event, recording the removal of an MTP within the platform.- Version:
- $Date$ $Revision$
- Author:
- Giovanni Rimassa - Universita' di Parma
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description RemovedMTP()Default constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetAddress()Retrieve the value of theaddressslot of this event, containing the address URL of the newly removed MTP.StringgetName()Retrieve the name of this event.StringgetProto()Retrieve the value of theprotoslot of this event, containing the protocol name for the newly removed MTP.ContainerIDgetWhere()Retrieve the value of thewhereslot of this event, containing the container identifier of the container where the newly removed MTP was deployed.voidsetAddress(String s)Set theaddressslot of this event.voidsetProto(String p)Set theprotoslot of this event.voidsetWhere(ContainerID id)Set thewhereslot of this event.
-
-
-
Field Detail
-
NAME
public static final String NAME
A string constant for the name of this event.- See Also:
- Constant Field Values
-
-
Method Detail
-
getName
public String getName()
Retrieve the name of this event.
-
setAddress
public void setAddress(String s)
Set theaddressslot of this event.- Parameters:
s- The address URL of the newly removed MTP.
-
getAddress
public String getAddress()
Retrieve the value of theaddressslot of this event, containing the address URL of the newly removed MTP.- Returns:
- The value of the
addressslot, ornullif no value was set.
-
setProto
public void setProto(String p)
Set theprotoslot of this event.- Parameters:
p- The protocol name for the newly removed MTP.
-
getProto
public String getProto()
Retrieve the value of theprotoslot of this event, containing the protocol name for the newly removed MTP.- Returns:
- The value of the
protoslot, ornullif no value was set.
-
setWhere
public void setWhere(ContainerID id)
Set thewhereslot of this event.- Parameters:
id- The container identifier of the container where the newly removed MTP was deployed.
-
getWhere
public ContainerID getWhere()
Retrieve the value of thewhereslot of this event, containing the container identifier of the container where the newly removed MTP was deployed.- Returns:
- The value of the
whereslot, ornullif no value was set.
-
-