-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CXF-9039: Support SeBootstrap HTTPS configuration
- Loading branch information
Showing
11 changed files
with
281 additions
and
17 deletions.
There are no files selected for viewing
54 changes: 54 additions & 0 deletions
54
core/src/main/java/org/apache/cxf/configuration/jsse/SSLContextServerParameters.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
/** | ||
* 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 | ||
* | ||
* http://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. | ||
*/ | ||
|
||
package org.apache.cxf.configuration.jsse; | ||
|
||
import java.util.Arrays; | ||
|
||
import javax.net.ssl.KeyManager; | ||
import javax.net.ssl.SSLContext; | ||
import javax.net.ssl.TrustManager; | ||
|
||
/** | ||
* Allows to supply to the HTTP Server the complete SSLContext already preconfigured. | ||
*/ | ||
public class SSLContextServerParameters extends TLSServerParameters { | ||
private final SSLContext sslContext; | ||
|
||
public SSLContextServerParameters(SSLContext sslContext) { | ||
this.sslContext = sslContext; | ||
setSecureSocketProtocol(sslContext.getProtocol()); | ||
setJsseProvider(sslContext.getProvider().getName()); | ||
setCipherSuites(Arrays.asList(sslContext.getServerSocketFactory().getSupportedCipherSuites())); | ||
} | ||
|
||
public SSLContext getSslContext() { | ||
return sslContext; | ||
} | ||
|
||
@Override | ||
public TrustManager[] getTrustManagers() { | ||
throw new UnsupportedOperationException("The operation is not supported by SSLContextServerParameters"); | ||
} | ||
|
||
@Override | ||
public KeyManager[] getKeyManagers() { | ||
throw new UnsupportedOperationException("The operation is not supported by SSLContextServerParameters"); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
47 changes: 47 additions & 0 deletions
47
...rc/main/java/org/apache/cxf/transport/http/HTTPServerEngineFactoryParametersProvider.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
/** | ||
* 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 | ||
* | ||
* http://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. | ||
*/ | ||
|
||
package org.apache.cxf.transport.http; | ||
|
||
import java.util.Optional; | ||
|
||
import jakarta.annotation.Nullable; | ||
import org.apache.cxf.Bus; | ||
import org.apache.cxf.configuration.jsse.TLSServerParameters; | ||
|
||
/** | ||
* Provides programmatic defaults to the different HTTP server engine | ||
* factories implementations (that do not share any common interfaces or other | ||
* abstractions). | ||
*/ | ||
public interface HTTPServerEngineFactoryParametersProvider { | ||
/** | ||
* Returns the default {@link TLSServerParameters} instance that the HTTP server | ||
* engine could use if there are no {@link TLSServerParameters} provided to by the | ||
* configuration. | ||
* @param bus {@link Bus} instance | ||
* @param host host name | ||
* @param port port | ||
* @param protocol protocol | ||
* @param id server transport identifier (if available) | ||
* @return the default {@link TLSServerParameters} instance, if available | ||
*/ | ||
Optional<TLSServerParameters> getDefaultTlsServerParameters(Bus bus, String host, | ||
int port, String protocol, @Nullable String id); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.