RangingControleeParameters

  • RangingControleeParameters is a class used to pass parameters to the UWB controller when a Provisioned STS individual key is utilized.

  • The class has two public constructors to create instances with different parameters.

  • It provides public methods to retrieve the UWB address, sub-session ID, and sub-session key.

  • The class inherits standard methods from the java.lang.Object class.

public class RangingControleeParameters extends Object

Parameters passed to controller for UwbClient.addControleeWithSessionParams(RangingControleeParameters) when Provisioned STS individual key is used.

Public Constructor Summary

RangingControleeParameters(UwbAddress address, int subSessionId, byte[] subSessionKey)

Public Method Summary

UwbAddress
getAddress()
Gets the UWB address
int
getSubSessionId()
Gets sub-session id
byte[]
getSubSessionKey()
Gets sub-session key

Inherited Method Summary

Public Constructors

public RangingControleeParameters (UwbAddress address, int subSessionId, byte[] subSessionKey)

public RangingControleeParameters (UwbAddress address)

Public Methods

public UwbAddress getAddress ()

Gets the UWB address

public int getSubSessionId ()

Gets sub-session id

public byte[] getSubSessionKey ()

Gets sub-session key