blob: 46bea8210ba81b7e16ed5b45012ab9af7cf68b08 [file] [log] [blame]
////
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
https://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
////
[#org_apache_logging_log4j_core_net_ssl_TrustStoreConfiguration]
= TrustStore
Class:: `org.apache.logging.log4j.core.net.ssl.TrustStoreConfiguration`
Provider:: `org.apache.logging.log4j:log4j-core`
Configuration of the TrustStore
[#org_apache_logging_log4j_core_net_ssl_TrustStoreConfiguration-XML-snippet]
== XML snippet
[source, xml]
----
<TrustStore location=""
password=""
passwordEnvironmentVariable=""
passwordFile=""
trustManagerFactoryAlgorithm=""
type=""/>
----
[#org_apache_logging_log4j_core_net_ssl_TrustStoreConfiguration-attributes]
== Attributes
Optional attributes are denoted by `?`-suffixed types.
[cols="1m,1m,1m,5"]
|===
|Name|Type|Default|Description
|location
|xref:../scalars.adoc#java_lang_String[String]?
|
a|The location of the KeyStore, a file path, URL or resource.
|password
|xref:../scalars.adoc#java_lang_String[String]?
|
a|The password to access the KeyStore.
|passwordEnvironmentVariable
|xref:../scalars.adoc#java_lang_String[String]?
|
a|
|passwordFile
|xref:../scalars.adoc#java_lang_String[String]?
|
a|
|trustManagerFactoryAlgorithm
|xref:../scalars.adoc#java_lang_String[String]?
|
a|The standard name of the requested trust management algorithm.
See the Java Secure Socket Extension Reference Guide for information these names.
|type
|xref:../scalars.adoc#java_lang_String[String]?
|
a|The KeyStore type, null defaults to `"JKS"`.
|===