From 0d9892df0aa99e13ff83bfdeb3de8f1e8305bdcd Mon Sep 17 00:00:00 2001 From: Øyvind Grønnesby Date: Tue, 8 Oct 2019 12:46:27 +0200 Subject: Add "privateKey" to the Properties utility class --- hosted-api/src/main/java/ai/vespa/hosted/api/Properties.java | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'hosted-api') diff --git a/hosted-api/src/main/java/ai/vespa/hosted/api/Properties.java b/hosted-api/src/main/java/ai/vespa/hosted/api/Properties.java index 0ca1b3e5603..d578f937485 100644 --- a/hosted-api/src/main/java/ai/vespa/hosted/api/Properties.java +++ b/hosted-api/src/main/java/ai/vespa/hosted/api/Properties.java @@ -42,6 +42,10 @@ public class Properties { return getNonBlankProperty("certificateFile").map(Paths::get); } + public static Optional privateKey() { + return getNonBlankProperty("privateKey"); + } + /** Returns the system property with the given name if it is set, or empty. */ public static Optional getNonBlankProperty(String name) { return Optional.ofNullable(System.getProperty(name)).filter(value -> ! value.isBlank()); -- cgit v1.2.3