Up proto for string balance request (#25)

This commit is contained in:
struga 2022-03-30 12:36:38 +03:00 committed by GitHub
parent af90a29a92
commit 9f75e4197a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -27,7 +27,7 @@
<dockerfile.base.service.tag>7e0c98bb</dockerfile.base.service.tag> <dockerfile.base.service.tag>7e0c98bb</dockerfile.base.service.tag>
<shared-resources.version>1.4.0</shared-resources.version> <shared-resources.version>1.4.0</shared-resources.version>
<cds-proto.version>1.64-74a763b</cds-proto.version> <cds-proto.version>1.64-74a763b</cds-proto.version>
<accout.balance.proto.version>1.7-ff1c05a</accout.balance.proto.version> <accout.balance.proto.version>1.12-61ea81e</accout.balance.proto.version>
</properties> </properties>
<dependencies> <dependencies>

View File

@ -14,8 +14,8 @@ import java.util.concurrent.ThreadLocalRandom;
public class AccountBalanceHandler implements AccountServiceSrv.Iface { public class AccountBalanceHandler implements AccountServiceSrv.Iface {
public static final String WRONG_ARGUMENT_EXCEPTION_MESSAGE = "Empty options in account balance request"; public static final String WRONG_ARGUMENT_EXCEPTION_MESSAGE = "Empty options in account balance request";
private static final long MOCK_ACCOUNT_ID_ONE = 100192381092L; private static final String MOCK_ACCOUNT_ID_ONE = "100192381092";
private static final long MOCK_ACCOUNT_ID_TWO = 203817234980L; private static final String MOCK_ACCOUNT_ID_TWO = "203817234980";
@Override @Override
public BalanceResponse getBalance(BalanceRequest balanceRequest) { public BalanceResponse getBalance(BalanceRequest balanceRequest) {