NdsStoreConfiguration

data class NdsStoreConfiguration(    val ndsStorePath: File,     val keystorePath: File? = null,     val keystorePassword: String? = null,     val ndsStoreUpdateConfig: NdsStoreUpdateConfig)

Configuration parameters for an NdsStore.

See also

Parameters

ndsStorePath
  • The path to the NDS Store, the directory that contains the 'ROOT.NDS' file. The directory and its content must be accessible and writable.

keystorePath
  • Path to the keystore file containing encryption keys for the NDS store files. If the NDS store is encrypted, the keystore file is required.

keystorePassword
  • The password for the keystore file provided through the keystorePath parameter. If the keystore file is encrypted, this password is required.

ndsStoreUpdateConfig
  • The configuration for the updates of the NDS store.

Constructors

Link copied to clipboard
fun NdsStoreConfiguration(    ndsStorePath: File,     keystorePath: File? = null,     keystorePassword: String? = null,     ndsStoreUpdateConfig: NdsStoreUpdateConfig)

Properties

Link copied to clipboard
val keystorePassword: String? = null
Link copied to clipboard
val keystorePath: File? = null
Link copied to clipboard
val ndsStorePath: File
Link copied to clipboard
val ndsStoreUpdateConfig: NdsStoreUpdateConfig