Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
* enclosed by brackets [] replaced by your own identifying information:
* "Portions Copyrighted [year] [name of copyright owner]"
* ====================
* Portions Copyrighted 2026 3A Systems, LLC
*/
package org.identityconnectors.framework.server.impl;

Expand All @@ -38,8 +39,10 @@ public class CCLWatchThreadFactory implements ThreadFactory {
final String namePrefix;

CCLWatchThreadFactory() {
SecurityManager s = System.getSecurityManager();
group = (s != null) ? s.getThreadGroup() : Thread.currentThread().getThreadGroup();
// matches java.util.concurrent.Executors.DefaultThreadFactory, which
// dropped its SecurityManager check once the Security Manager was
// permanently disabled (JEP 486)
group = Thread.currentThread().getThreadGroup();
namePrefix = "pool-" + POOL_NUMBER.getAndIncrement() + "-thread-";
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
* See the Apache License Version 2.0 for the specific language governing permissions and limitations there under.
* ====================
* Portions Copyrighted 2015 ForgeRock AS.
* Portions Copyrighted 2026 3A Systems, LLC
*/

/**
Expand Down Expand Up @@ -297,11 +298,11 @@ public void onTimeout(Connection connection) {

SSLContextConfigurator contextConfigurator = createSSLContextConfigurator(clientConfig);
SSLContext context =
null != contextConfigurator ? contextConfigurator.createSSLContext() : null;
null != contextConfigurator ? contextConfigurator.createSSLContext(false) : null;
boolean defaultSecState = (context != null);
if (context == null) {
try {
context = DEFAULT_CONFIG.createSSLContext();
context = DEFAULT_CONFIG.createSSLContext(false);
} catch (Exception e) {
throw new IllegalStateException(e);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -367,7 +367,7 @@ protected SSLEngineConfigurator createSSLConfig(final SSLContextConfigurator con
boolean wantClientAuth = false;

SSLEngineConfigurator result =
new SSLEngineConfigurator(contextConfigurator.createSSLContext(), false,
new SSLEngineConfigurator(contextConfigurator.createSSLContext(false), false,
needClientAuth, wantClientAuth);

result.setEnabledCipherSuites(ConnectorServer.RECOMMENDED_CIPHERS);
Expand Down
Loading