/** * Instantiate with an participant identifier * * @param id participant identifier */ public LiveInstance(ParticipantId id) { super(id.toString()); }
/** * Get the id of this participant * * @return participant id */ public ParticipantId getParticipantId() { return ParticipantId.from(getInstanceName()); }