mirror of
https://github.com/corda/corda.git
synced 2025-06-13 12:48:18 +00:00
Unduplicate certificatesDirectory (#740)
This commit is contained in:
@ -10,4 +10,9 @@ interface SSLConfiguration {
|
||||
val sslKeystore: Path get() = certificatesDirectory / "sslkeystore.jks"
|
||||
val nodeKeystore: Path get() = certificatesDirectory / "nodekeystore.jks"
|
||||
val trustStoreFile: Path get() = certificatesDirectory / "truststore.jks"
|
||||
}
|
||||
}
|
||||
|
||||
interface NodeSSLConfiguration : SSLConfiguration {
|
||||
val baseDirectory: Path
|
||||
override val certificatesDirectory: Path get() = baseDirectory / "certificates"
|
||||
}
|
||||
|
Reference in New Issue
Block a user