Package jadex.bridge.component.streams
Class InitInfo
- java.lang.Object
-
- jadex.bridge.component.streams.InitInfo
-
public class InitInfo extends java.lang.Object
Info sent as content of the init message.
-
-
Field Summary
Fields Modifier and Type Field Description protected IComponentIdentifier
initiator
The initiator.protected java.util.Map<java.lang.String,java.lang.Object>
nonfunc
The non-functional properties.protected IComponentIdentifier
participant
The 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 IComponentIdentifier
getInitiator()
Get the initiator.java.util.Map<java.lang.String,java.lang.Object>
getNonFunctionalProperties()
Get the nonFunctionalProperties.IComponentIdentifier
getParticipant()
Get the participant.void
setInitiator(IComponentIdentifier initiator)
Set the initiator.void
setNonFunctionalProperties(java.util.Map<java.lang.String,java.lang.Object> nonFunctionalProperties)
Set the nonFunctionalProperties.void
setParticipant(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.
-
-