/* * Copyright OpenSearch Contributors * SPDX-License-Identifier: Apache-2.0 */ package org.opensearch.jdbc.config; public class KeyStoreLocationConnectionProperty extends StringConnectionProperty { public static final String KEY = "keyStoreLocation"; public KeyStoreLocationConnectionProperty() { super(KEY); } public String getDefault() { return null; } }