Class ComponentRegistryAgent.ComponentInfo
- java.lang.Object
-
- jadex.platform.service.componentregistry.ComponentRegistryAgent.ComponentInfo
-
- Enclosing class:
- ComponentRegistryAgent
public static class ComponentRegistryAgent.ComponentInfo extends java.lang.Object
-
-
Field Summary
Fields Modifier and Type Field Description protected CreationInfoinfoThe creation info.protected java.util.List<IServiceIdentifier>sidsThe services of the component.
-
Constructor Summary
Constructors Constructor Description ComponentInfo()Create a new ComponentInfo.ComponentInfo(CreationInfo info, java.util.List<IServiceIdentifier> sids)Create a new ComponentInfo.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description CreationInfogetInfo()Get the info.java.util.List<IServiceIdentifier>getSids()Get the sids.voidsetInfo(CreationInfo info)Set the info.voidsetSids(java.util.List<IServiceIdentifier> sids)Set the sids.
-
-
-
Field Detail
-
info
protected CreationInfo info
The creation info.
-
sids
protected java.util.List<IServiceIdentifier> sids
The services of the component.
-
-
Constructor Detail
-
ComponentInfo
public ComponentInfo()
Create a new ComponentInfo.
-
ComponentInfo
public ComponentInfo(CreationInfo info, java.util.List<IServiceIdentifier> sids)
Create a new ComponentInfo.
-
-
Method Detail
-
getInfo
public CreationInfo getInfo()
Get the info.- Returns:
- the info
-
setInfo
public void setInfo(CreationInfo info)
Set the info.- Parameters:
info- The info to set
-
getSids
public java.util.List<IServiceIdentifier> getSids()
Get the sids.- Returns:
- the sids
-
setSids
public void setSids(java.util.List<IServiceIdentifier> sids)
Set the sids.- Parameters:
sids- The sids to set
-
-