Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
S
spring-cloud-netflix
Project
Overview
Details
Activity
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
openSource
spring-cloud-netflix
Commits
65902d11
Commit
65902d11
authored
Jul 12, 2017
by
Ryan Baxter
Committed by
GitHub
Jul 12, 2017
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #2113 from gzurowski/remove-lombok-from-sidecar
Remove Lombok from spring-cloud-netflix-sidecare module
parents
050dc31c
5f4fc247
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
70 additions
and
10 deletions
+70
-10
pom.xml
spring-cloud-netflix-sidecar/pom.xml
+0
-7
SidecarProperties.java
...ingframework/cloud/netflix/sidecar/SidecarProperties.java
+70
-3
No files found.
spring-cloud-netflix-sidecar/pom.xml
View file @
65902d11
...
...
@@ -90,13 +90,6 @@
<artifactId>
tomcat-embed-el
</artifactId>
</dependency>
<dependency>
<groupId>
org.projectlombok
</groupId>
<artifactId>
lombok
</artifactId>
<!-- Only needed at compile time -->
<scope>
compile
</scope>
<optional>
true
</optional>
</dependency>
<dependency>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-starter-test
</artifactId>
<scope>
test
</scope>
...
...
spring-cloud-netflix-sidecar/src/main/java/org/springframework/cloud/netflix/sidecar/SidecarProperties.java
View file @
65902d11
...
...
@@ -17,18 +17,17 @@
package
org
.
springframework
.
cloud
.
netflix
.
sidecar
;
import
java.net.URI
;
import
java.util.Objects
;
import
javax.validation.constraints.Max
;
import
javax.validation.constraints.Min
;
import
lombok.Data
;
import
org.springframework.boot.context.properties.ConfigurationProperties
;
/**
* @author Spencer Gibb
* @author Gregor Zurowski
*/
@Data
@ConfigurationProperties
(
"sidecar"
)
public
class
SidecarProperties
{
...
...
@@ -44,4 +43,72 @@ public class SidecarProperties {
private
String
ipAddress
;
public
URI
getHealthUri
()
{
return
healthUri
;
}
public
void
setHealthUri
(
URI
healthUri
)
{
this
.
healthUri
=
healthUri
;
}
public
URI
getHomePageUri
()
{
return
homePageUri
;
}
public
void
setHomePageUri
(
URI
homePageUri
)
{
this
.
homePageUri
=
homePageUri
;
}
public
int
getPort
()
{
return
port
;
}
public
void
setPort
(
int
port
)
{
this
.
port
=
port
;
}
public
String
getHostname
()
{
return
hostname
;
}
public
void
setHostname
(
String
hostname
)
{
this
.
hostname
=
hostname
;
}
public
String
getIpAddress
()
{
return
ipAddress
;
}
public
void
setIpAddress
(
String
ipAddress
)
{
this
.
ipAddress
=
ipAddress
;
}
@Override
public
boolean
equals
(
Object
o
)
{
if
(
this
==
o
)
return
true
;
if
(
o
==
null
||
getClass
()
!=
o
.
getClass
())
return
false
;
SidecarProperties
that
=
(
SidecarProperties
)
o
;
return
Objects
.
equals
(
healthUri
,
that
.
healthUri
)
&&
Objects
.
equals
(
homePageUri
,
that
.
homePageUri
)
&&
port
==
that
.
port
&&
Objects
.
equals
(
hostname
,
that
.
hostname
)
&&
Objects
.
equals
(
ipAddress
,
that
.
ipAddress
);
}
@Override
public
int
hashCode
()
{
return
Objects
.
hash
(
healthUri
,
homePageUri
,
port
,
hostname
,
ipAddress
);
}
@Override
public
String
toString
()
{
return
new
StringBuilder
(
"SidecarProperties{"
)
.
append
(
"healthUri="
).
append
(
healthUri
).
append
(
", "
)
.
append
(
"homePageUri="
).
append
(
homePageUri
).
append
(
", "
)
.
append
(
"port="
).
append
(
port
).
append
(
", "
)
.
append
(
"hostname='"
).
append
(
hostname
).
append
(
"', "
)
.
append
(
"ipAddress='"
).
append
(
ipAddress
).
append
(
"'}"
)
.
toString
();
}
}
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