Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in / Register
Toggle navigation
S
spring-boot
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
DEMO
spring-boot
Commits
0a8bc482
Commit
0a8bc482
authored
Dec 02, 2014
by
Andy Wilkinson
Committed by
Stephane Nicoll
Dec 02, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add documentation for Ssl properties
Closes gh-2049
parent
dbcbebca
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
30 additions
and
3 deletions
+30
-3
Ssl.java
...n/java/org/springframework/boot/context/embedded/Ssl.java
+30
-3
No files found.
spring-boot/src/main/java/org/springframework/boot/context/embedded/Ssl.java
View file @
0a8bc482
...
@@ -26,36 +26,63 @@ package org.springframework.boot.context.embedded;
...
@@ -26,36 +26,63 @@ package org.springframework.boot.context.embedded;
public
class
Ssl
{
public
class
Ssl
{
/**
/**
*
Client authentication mode ("want", "need")
.
*
Whether client authentication is wanted ("want") or needed ("need"). Requires a trust store
.
*/
*/
private
ClientAuth
clientAuth
;
private
ClientAuth
clientAuth
;
/**
* Supported SSL ciphers.
*/
private
String
[]
ciphers
;
private
String
[]
ciphers
;
/**
* Alias that identifies the key in the key store.
*/
private
String
keyAlias
;
private
String
keyAlias
;
/**
* Password used to access the key in the key store.
*/
private
String
keyPassword
;
private
String
keyPassword
;
/**
/**
* Path to the key store (typically a jks file).
* Path to the key store
that holds the SSL certificate
(typically a jks file).
*/
*/
private
String
keyStore
;
private
String
keyStore
;
/**
/**
*
Login password of
the key store.
*
Password used to access
the key store.
*/
*/
private
String
keyStorePassword
;
private
String
keyStorePassword
;
/**
* Type of the key store.
*/
private
String
keyStoreType
;
private
String
keyStoreType
;
/**
* Provider for the key store.
*/
private
String
keyStoreProvider
;
private
String
keyStoreProvider
;
/**
* Trust store that holds SSL certificates.
*/
private
String
trustStore
;
private
String
trustStore
;
/**
* Password used to access the trust store.
*/
private
String
trustStorePassword
;
private
String
trustStorePassword
;
/**
* Type of the trust store.
*/
private
String
trustStoreType
;
private
String
trustStoreType
;
/**
* Provider for the trust store.
*/
private
String
trustStoreProvider
;
private
String
trustStoreProvider
;
/**
/**
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment