Package jade.domain.introspection
Class AddedMTP
- java.lang.Object
-
- jade.domain.introspection.AddedMTP
-
- All Implemented Interfaces:
Concept,Term,Event,Serializable,Serializable
public class AddedMTP extends Object implements Event
This class represents theadded-mtpconcept in thejade-introspectionontology.- Version:
- $Date$ $Revision$
- Author:
- Giovanni Rimassa - Universita' di Parma
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description AddedMTP()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 added MTP.StringgetName()Retrieve the name of this event.StringgetProto()Retrieve the value of theprotoslot of this event, containing the protocol name for the newly added MTP.ContainerIDgetWhere()Retrieve the value of thewhereslot of this event, containing the container identifier of the container where the newly added MTP was deployed.voidsetAddress(String s)Set theaddressof 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 theaddressof this event.- Parameters:
s- The address URL exported by the newly added MTP.
-
getAddress
public String getAddress()
Retrieve the value of theaddressslot of this event, containing the address URL of the newly added 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 added MTP.
-
getProto
public String getProto()
Retrieve the value of theprotoslot of this event, containing the protocol name for the newly added 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 added 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 added MTP was deployed.- Returns:
- The value of the
whereslot, ornullif no value was set.
-
-