Skip to content

Commit

Permalink
adding setters
Browse files Browse the repository at this point in the history
  • Loading branch information
salaboy committed Sep 6, 2024
1 parent 1b9fc2f commit 9f130eb
Showing 1 changed file with 16 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,4 +52,20 @@ public Integer getHttpPort() {
public Integer getGrpcPort() {
return grpcPort;
}

public void setHttpEndpoint(String httpEndpoint) {
this.httpEndpoint = httpEndpoint;
}

public void setGrpcEndpoint(String grpcEndpoint) {
this.grpcEndpoint = grpcEndpoint;
}

public void setHttpPort(Integer httpPort) {
this.httpPort = httpPort;
}

public void setGrpcPort(Integer grpcPort) {
this.grpcPort = grpcPort;
}
}

0 comments on commit 9f130eb

Please sign in to comment.