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
7681d084
Commit
7681d084
authored
Jan 28, 2014
by
Christian Dupuis
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add missing bean property getters
parent
efe8494f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
24 additions
and
0 deletions
+24
-0
ShellProperties.java
...ingframework/boot/actuate/properties/ShellProperties.java
+24
-0
No files found.
spring-boot-actuator/src/main/java/org/springframework/boot/actuate/properties/ShellProperties.java
View file @
7681d084
...
@@ -223,11 +223,19 @@ public class ShellProperties {
...
@@ -223,11 +223,19 @@ public class ShellProperties {
this
.
keyPath
=
keyPath
;
this
.
keyPath
=
keyPath
;
}
}
public
String
getKeyPath
()
{
return
this
.
keyPath
;
}
public
void
setPort
(
Integer
port
)
{
public
void
setPort
(
Integer
port
)
{
Assert
.
notNull
(
port
,
"port must not be null"
);
Assert
.
notNull
(
port
,
"port must not be null"
);
this
.
port
=
port
.
toString
();
this
.
port
=
port
.
toString
();
}
}
public
String
getPort
()
{
return
this
.
port
;
}
}
}
/**
/**
...
@@ -260,6 +268,10 @@ public class ShellProperties {
...
@@ -260,6 +268,10 @@ public class ShellProperties {
this
.
port
=
port
.
toString
();
this
.
port
=
port
.
toString
();
}
}
public
String
getPort
()
{
return
this
.
port
;
}
}
}
/**
/**
...
@@ -282,6 +294,10 @@ public class ShellProperties {
...
@@ -282,6 +294,10 @@ public class ShellProperties {
this
.
domain
=
domain
;
this
.
domain
=
domain
;
}
}
public
String
getDomain
()
{
return
this
.
domain
;
}
}
}
/**
/**
...
@@ -306,6 +322,10 @@ public class ShellProperties {
...
@@ -306,6 +322,10 @@ public class ShellProperties {
this
.
path
=
path
;
this
.
path
=
path
;
}
}
public
String
getPath
()
{
return
this
.
path
;
}
}
}
/**
/**
...
@@ -400,6 +420,10 @@ public class ShellProperties {
...
@@ -400,6 +420,10 @@ public class ShellProperties {
this
.
roles
=
roles
;
this
.
roles
=
roles
;
}
}
public
String
[]
getRoles
()
{
return
this
.
roles
;
}
}
}
}
}
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