Package jadex.bridge.component.streams
Class InitInfo
- java.lang.Object
 - 
- jadex.bridge.component.streams.InitInfo
 
 
- 
public class InitInfo extends java.lang.ObjectInfo sent as content of the init message. 
- 
- 
Field Summary
Fields Modifier and Type Field Description protected IComponentIdentifierinitiatorThe initiator.protected java.util.Map<java.lang.String,java.lang.Object>nonfuncThe non-functional properties.protected IComponentIdentifierparticipantThe participant. 
- 
Constructor Summary
Constructors Constructor Description InitInfo()Create a new init info.InitInfo(IComponentIdentifier initiator, IComponentIdentifier participant, java.util.Map<java.lang.String,java.lang.Object> nonfunc)Create a new init info. 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description IComponentIdentifiergetInitiator()Get the initiator.java.util.Map<java.lang.String,java.lang.Object>getNonFunctionalProperties()Get the nonFunctionalProperties.IComponentIdentifiergetParticipant()Get the participant.voidsetInitiator(IComponentIdentifier initiator)Set the initiator.voidsetNonFunctionalProperties(java.util.Map<java.lang.String,java.lang.Object> nonFunctionalProperties)Set the nonFunctionalProperties.voidsetParticipant(IComponentIdentifier participant)Set the participant. 
 - 
 
- 
- 
Field Detail
- 
initiator
protected IComponentIdentifier initiator
The initiator. 
- 
participant
protected IComponentIdentifier participant
The participant. 
- 
nonfunc
protected java.util.Map<java.lang.String,java.lang.Object> nonfunc
The non-functional properties. 
 - 
 
- 
Constructor Detail
- 
InitInfo
public InitInfo()
Create a new init info. 
- 
InitInfo
public InitInfo(IComponentIdentifier initiator, IComponentIdentifier participant, java.util.Map<java.lang.String,java.lang.Object> nonfunc)
Create a new init info. 
 - 
 
- 
Method Detail
- 
getInitiator
public IComponentIdentifier getInitiator()
Get the initiator.- Returns:
 - the initiator.
 
 
- 
setInitiator
public void setInitiator(IComponentIdentifier initiator)
Set the initiator.- Parameters:
 initiator- The initiator to set.
 
- 
getParticipant
public IComponentIdentifier getParticipant()
Get the participant.- Returns:
 - the participant.
 
 
- 
setParticipant
public void setParticipant(IComponentIdentifier participant)
Set the participant.- Parameters:
 participant- The participant to set.
 
- 
getNonFunctionalProperties
public java.util.Map<java.lang.String,java.lang.Object> getNonFunctionalProperties()
Get the nonFunctionalProperties.- Returns:
 - the nonFunctionalProperties.
 
 
- 
setNonFunctionalProperties
public void setNonFunctionalProperties(java.util.Map<java.lang.String,java.lang.Object> nonFunctionalProperties)
Set the nonFunctionalProperties.- Parameters:
 nonFunctionalProperties- The nonFunctionalProperties to set.
 
 - 
 
 -