NdsStoreAccessPermit

abstract class NdsStoreAccessPermit

An abstract class defining the permit required for accessing the onboard NDS store. This class cannot be directly instantiated and requires a specific type of permit. Example:

val storeAccessPermit = NdsStoreAccessPermit.MapLicense("<MAP_LICENSE>")
// or
val storeAccessPermit = NdsStoreAccessPermit.KeystorePassword("<KEYSTORE_PASSWORD>")

Parameters

content

The specific content of the permit.

Inheritors

Types

Link copied to clipboard

A subclass representing a password-based access permit for a keystore.

Link copied to clipboard
class MapLicense(val content: String) : NdsStoreAccessPermit

A subclass representing a license-based access permit for a map.

Properties

Link copied to clipboard