/*
* Copyright 2017-2020 original authors
*
* Licensed 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.
*/
package io.micronaut.http.ssl;
import io.micronaut.context.annotation.ConfigurationProperties;
import io.micronaut.context.annotation.Requires;
import edu.umd.cs.findbugs.annotations.Nullable;
import javax.inject.Inject;
The default SslConfiguration
used for HTTP servers. Author: Graeme Rocher Since: 1.0
/**
* The default {@link SslConfiguration} used for HTTP servers.
*
* @author Graeme Rocher
* @since 1.0
*/
@ConfigurationProperties(ServerSslConfiguration.PREFIX)
public class ServerSslConfiguration extends SslConfiguration {
The prefix used to resolve this configuration.
/**
* The prefix used to resolve this configuration.
*/
public static final String PREFIX = "micronaut.server.ssl";
Overrides the default constructor and sets SslConfiguration.isEnabled()
to true. Params: - defaultSslConfiguration – The default SSL config
- defaultKeyConfiguration – The default key config
- defaultKeyStoreConfiguration – The default keystore config
- defaultTrustStoreConfiguration – The Default truststore config
/**
* Overrides the default constructor and sets {@link #isEnabled()} to true.
*
* @param defaultSslConfiguration The default SSL config
* @param defaultKeyConfiguration The default key config
* @param defaultKeyStoreConfiguration The default keystore config
* @param defaultTrustStoreConfiguration The Default truststore config
*/
@Inject
public ServerSslConfiguration(
DefaultSslConfiguration defaultSslConfiguration,
DefaultSslConfiguration.DefaultKeyConfiguration defaultKeyConfiguration,
DefaultSslConfiguration.DefaultKeyStoreConfiguration defaultKeyStoreConfiguration,
SslConfiguration.TrustStoreConfiguration defaultTrustStoreConfiguration) {
readExisting(defaultSslConfiguration, defaultKeyConfiguration, defaultKeyStoreConfiguration, defaultTrustStoreConfiguration);
}
Constructs the default server SSL configuration.
/**
* Constructs the default server SSL configuration.
*/
public ServerSslConfiguration() {
}
Sets the key configuration.
Params: - keyConfiguration – The key configuration.
/**
* Sets the key configuration.
*
* @param keyConfiguration The key configuration.
*/
@Inject
void setKey(@Nullable DefaultKeyConfiguration keyConfiguration) {
if (keyConfiguration != null) {
super.setKey(keyConfiguration);
}
}
Sets the key store.
Params: - keyStoreConfiguration – The key store configuration
/**
* Sets the key store.
*
* @param keyStoreConfiguration The key store configuration
*/
@Inject
@SuppressWarnings("unused")
void setKeyStore(@Nullable DefaultKeyStoreConfiguration keyStoreConfiguration) {
if (keyStoreConfiguration != null) {
super.setKeyStore(keyStoreConfiguration);
}
}
Sets trust store configuration.
Params: - trustStore – The trust store configuration
/**
* Sets trust store configuration.
*
* @param trustStore The trust store configuration
*/
@Inject
@SuppressWarnings("unused")
void setTrustStore(@Nullable DefaultTrustStoreConfiguration trustStore) {
if (trustStore != null) {
super.setTrustStore(trustStore);
}
}
The default KeyConfiguration
. /**
* The default {@link io.micronaut.http.ssl.SslConfiguration.KeyConfiguration}.
*/
@SuppressWarnings("WeakerAccess")
@ConfigurationProperties(KeyConfiguration.PREFIX)
@Requires(property = ServerSslConfiguration.PREFIX + "." + KeyConfiguration.PREFIX)
public static class DefaultKeyConfiguration extends KeyConfiguration {
}
The default KeyStoreConfiguration
. /**
* The default {@link io.micronaut.http.ssl.SslConfiguration.KeyStoreConfiguration}.
*/
@SuppressWarnings("WeakerAccess")
@ConfigurationProperties(KeyStoreConfiguration.PREFIX)
@Requires(property = ServerSslConfiguration.PREFIX + "." + KeyStoreConfiguration.PREFIX)
public static class DefaultKeyStoreConfiguration extends KeyStoreConfiguration {
}
The default TrustStoreConfiguration
. /**
* The default {@link io.micronaut.http.ssl.SslConfiguration.TrustStoreConfiguration}.
*/
@SuppressWarnings("WeakerAccess")
@ConfigurationProperties(TrustStoreConfiguration.PREFIX)
@Requires(property = ServerSslConfiguration.PREFIX + "." + TrustStoreConfiguration.PREFIX)
public static class DefaultTrustStoreConfiguration extends TrustStoreConfiguration {
}
}