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 SummaryFields 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 SummaryConstructors 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 SummaryAll 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- 
initiatorprotected IComponentIdentifier initiator The initiator.
 - 
participantprotected IComponentIdentifier participant The participant.
 - 
nonfuncprotected java.util.Map<java.lang.String,java.lang.Object> nonfunc The non-functional properties.
 
- 
 - 
Constructor Detail- 
InitInfopublic InitInfo() Create a new init info.
 - 
InitInfopublic InitInfo(IComponentIdentifier initiator, IComponentIdentifier participant, java.util.Map<java.lang.String,java.lang.Object> nonfunc) Create a new init info.
 
- 
 - 
Method Detail- 
getInitiatorpublic IComponentIdentifier getInitiator() Get the initiator.- Returns:
- the initiator.
 
 - 
setInitiatorpublic void setInitiator(IComponentIdentifier initiator) Set the initiator.- Parameters:
- initiator- The initiator to set.
 
 - 
getParticipantpublic IComponentIdentifier getParticipant() Get the participant.- Returns:
- the participant.
 
 - 
setParticipantpublic void setParticipant(IComponentIdentifier participant) Set the participant.- Parameters:
- participant- The participant to set.
 
 - 
getNonFunctionalPropertiespublic java.util.Map<java.lang.String,java.lang.Object> getNonFunctionalProperties() Get the nonFunctionalProperties.- Returns:
- the nonFunctionalProperties.
 
 - 
setNonFunctionalPropertiespublic void setNonFunctionalProperties(java.util.Map<java.lang.String,java.lang.Object> nonFunctionalProperties) Set the nonFunctionalProperties.- Parameters:
- nonFunctionalProperties- The nonFunctionalProperties to set.
 
 
- 
 
-