ParticipantInfo

public class ParticipantInfo

Internal data holder for participant information. Used within introspection model.

Author

swrede, ssharma

Constructors

ParticipantInfo

public ParticipantInfo(String kind, ParticipantId id, ParticipantId parentId, Scope scope, Class<?> dataType, Set<URI> transportUris)

Creates a new instance.

Parameters
  • kind – string representation of the type of participant being represented, not null

  • id – id of the participant, not null

  • parentId – id of the parent participant or null if there is no parent

  • scope – scope of the participant, not null

  • dataType – data type of the participant or null if not applicable

  • transportUris – URIs describing the transports for the represented participant. Must not be null.

Methods

getDataType

public Class<?> getDataType()

Returns the participant’s data type or null if a single data type is not applicable for the type of participant.

Returns

data type class or null

getId

public ParticipantId getId()

Returns the unique ID of the participant.

Returns

participant id

getKind

public String getKind()

Returns a string representing the type of participant.

Returns

string representation

getParentId

public ParticipantId getParentId()

Returns the id of the parent participant or null in case there is no parent.

Returns

participant id or null

getScope

public Scope getScope()

Returns the scope the participant operates on.

Returns

scope

getTransportUris

public Set<URI> getTransportUris()

Returns the URIs describing the transports the represented participant uses.

Returns

set of URIs, not null