001/*
002Copyright 2015 Hendrik Saly
003
004Licensed under the Apache License, Version 2.0 (the "License");
005you may not use this file except in compliance with the License.
006You may obtain a copy of the License at
007
008    http://www.apache.org/licenses/LICENSE-2.0
009
010Unless required by applicable law or agreed to in writing, software
011distributed under the License is distributed on an "AS IS" BASIS,
012WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
013See the License for the specific language governing permissions and
014limitations under the License.
015 */
016
017package de.saly.es.example.tssl.util;
018
019public final class ConfigConstants {
020
021    public static final String SECURITY_SSL_TRANSPORT_NODE_ENABLED = "security.ssl.transport.node.enabled";
022    public static final String SECURITY_SSL_TRANSPORT_NODE_ENCFORCE_HOSTNAME_VERIFICATION = "security.ssl.transport.node.hostname_verification.enabled";
023    public static final String SECURITY_SSL_TRANSPORT_NODE_ENCFORCE_HOSTNAME_VERIFICATION_RESOLVE_HOST_NAME = "security.ssl.transport.node.hostname_verification.resolve_host_name";
024    public static final String SECURITY_SSL_TRANSPORT_NODE_NEED_CLIENTAUTH = "security.ssl.transport.node.need_clientauth";
025    public static final String SECURITY_SSL_TRANSPORT_NODE_KEYSTORE_FILEPATH = "security.ssl.transport.node.keystore.path";
026    public static final String SECURITY_SSL_TRANSPORT_NODE_KEYSTORE_PASSWORD = "security.ssl.transport.node.keystore.password";
027    public static final String SECURITY_SSL_TRANSPORT_NODE_KEYSTORE_TYPE = "security.ssl.transport.node.keystore.type";
028    public static final String SECURITY_SSL_TRANSPORT_NODE_TRUSTSTORE_FILEPATH = "security.ssl.transport.node.truststore.path";
029    public static final String SECURITY_SSL_TRANSPORT_NODE_TRUSTSTORE_PASSWORD = "security.ssl.transport.node.truststore.password";
030    public static final String SECURITY_SSL_TRANSPORT_NODE_TRUSTSTORE_TYPE = "security.ssl.transport.node.truststore.type";
031    public static final String SECURITY_SSL_TRANSPORT_NODE_SESSION_CACHE_SIZE = "security.ssl.transport.node.session.cache_size";
032    public static final String SECURITY_SSL_TRANSPORT_NODE_SESSION_TIMEOUT = "security.ssl.transport.node.session.timeout";
033
034    private ConfigConstants() {
035
036    }
037
038}