diff --git a/core-common/src/main/java/org/glassfish/jersey/ExternalProperties.java b/core-common/src/main/java/org/glassfish/jersey/ExternalProperties.java index 04ef1bd323..7115c805ce 100644 --- a/core-common/src/main/java/org/glassfish/jersey/ExternalProperties.java +++ b/core-common/src/main/java/org/glassfish/jersey/ExternalProperties.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2020, 2021 Oracle and/or its affiliates. All rights reserved. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v. 2.0, which is available at @@ -37,6 +37,16 @@ public final class ExternalProperties { */ public static final String HTTP_NON_PROXY_HOSTS = "http.nonProxyHosts"; + /** + * Property used to define supported cipher suites for apache connector + */ + public static final String HTTPS_CIPHERSUITES = "https.cipherSuites"; + + /** + * Property used to define supported protocols for apache connector + */ + public static final String HTTPS_PROTOCOLS = "https.protocols"; + /** * Prevent instantiation. */ diff --git a/tests/integration/externalproperties/pom.xml b/tests/integration/externalproperties/pom.xml index eb56341c26..2720f0e3ac 100644 --- a/tests/integration/externalproperties/pom.xml +++ b/tests/integration/externalproperties/pom.xml @@ -1,7 +1,7 @@