Skip to content

Commit 73a1f55

Browse files
committed
adding setters
Signed-off-by: salaboy <[email protected]>
1 parent 2eb9f0e commit 73a1f55

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

dapr-spring/dapr-spring-boot-autoconfigure/src/main/java/io/dapr/spring/boot/autoconfigure/client/DaprClientProperties.java

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,4 +52,20 @@ public Integer getHttpPort() {
5252
public Integer getGrpcPort() {
5353
return grpcPort;
5454
}
55+
56+
public void setHttpEndpoint(String httpEndpoint) {
57+
this.httpEndpoint = httpEndpoint;
58+
}
59+
60+
public void setGrpcEndpoint(String grpcEndpoint) {
61+
this.grpcEndpoint = grpcEndpoint;
62+
}
63+
64+
public void setHttpPort(Integer httpPort) {
65+
this.httpPort = httpPort;
66+
}
67+
68+
public void setGrpcPort(Integer grpcPort) {
69+
this.grpcPort = grpcPort;
70+
}
5571
}

0 commit comments

Comments
 (0)