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
f2c34612
Commit
f2c34612
authored
Feb 02, 2016
by
Dave Syer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix javadocs on ManagementServerProperties
parent
2baad561
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
3 deletions
+7
-3
ManagementServerProperties.java
...oot/actuate/autoconfigure/ManagementServerProperties.java
+7
-3
No files found.
spring-boot-actuator/src/main/java/org/springframework/boot/actuate/autoconfigure/ManagementServerProperties.java
View file @
f2c34612
...
@@ -44,14 +44,18 @@ public class ManagementServerProperties implements SecurityPrerequisite {
...
@@ -44,14 +44,18 @@ public class ManagementServerProperties implements SecurityPrerequisite {
* Order applied to the WebSecurityConfigurerAdapter that is used to configure basic
* Order applied to the WebSecurityConfigurerAdapter that is used to configure basic
* authentication for management endpoints. If you want to add your own authentication
* authentication for management endpoints. If you want to add your own authentication
* for all or some of those endpoints the best thing to do is add your own
* for all or some of those endpoints the best thing to do is add your own
* WebSecurityConfigurerAdapter with lower order.
* WebSecurityConfigurerAdapter with lower order, for instance by using
* ACCESS_OVERRIDE_ORDER.
*/
*/
public
static
final
int
BASIC_AUTH_ORDER
=
SecurityProperties
.
BASIC_AUTH_ORDER
-
5
;
public
static
final
int
BASIC_AUTH_ORDER
=
SecurityProperties
.
BASIC_AUTH_ORDER
-
5
;
/**
/**
* Order
after
the basic authentication access control provided automatically for the
* Order
before
the basic authentication access control provided automatically for the
* management endpoints. This is a useful place to put user-defined access rules if
* management endpoints. This is a useful place to put user-defined access rules if
* you want to override the default access rules.
* you want to override the default access rules for the management endpoints. If you
* want to keep the default rules for management endpoints but want to override the
* security for the rest of the application, use
* SecurityProperties.ACCESS_OVERRIDE_ORDER instead.
*/
*/
public
static
final
int
ACCESS_OVERRIDE_ORDER
=
ManagementServerProperties
.
BASIC_AUTH_ORDER
public
static
final
int
ACCESS_OVERRIDE_ORDER
=
ManagementServerProperties
.
BASIC_AUTH_ORDER
-
1
;
-
1
;
...
...
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