ParticipantId

public class ParticipantId

This class serves as a Uniform Resource Name to identify participants in an RSB system. At present, the URN is based on an UUID that is unique for each participant instance.

Author

swrede, jwienke

Constructors

ParticipantId

public ParticipantId()

Creates a new random id.

ParticipantId

public ParticipantId(byte[] bytes)

Creates an ID from a byte representation.

Parameters

bytes – byte representation of the id.

ParticipantId

public ParticipantId(String sid)

Parses an id from its string form generated with toString().

Parameters

sid – string representation

Throws

IllegalArgumentException – invalid string format

Methods

equals

public boolean equals(Object obj)

getUUID

protected UUID getUUID()

Returns the underlying UUID for this participant id.

Returns

uuid

hashCode

public int hashCode()

toByteArray

public byte[] toByteArray()

Returns the bytes representing the id.

Returns

byte representing the id (length 16)

toString

public String toString()