Skip to content

Commit 8601766

Browse files
authored
Provide setter for DefaultServiceInstance.secure (#1089)
1 parent aee2354 commit 8601766

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

spring-cloud-commons/src/main/java/org/springframework/cloud/client/DefaultServiceInstance.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -143,6 +143,10 @@ public void setHost(String host) {
143143
public void setPort(int port) {
144144
this.port = port;
145145
}
146+
147+
public void setSecure(boolean secure) {
148+
this.secure = secure;
149+
}
146150

147151
public void setUri(URI uri) {
148152
this.uri = uri;

0 commit comments

Comments
 (0)