minor proto fix

This commit is contained in:
YevhenBondarenko 2023-12-21 10:56:29 +01:00
parent 16cb74f0b5
commit ec19c2a718

View File

@ -877,7 +877,7 @@ public class ProtoUtils {
.setApiUsageStateIdMSB(getMsb(apiUsageState.getId())) .setApiUsageStateIdMSB(getMsb(apiUsageState.getId()))
.setApiUsageStateIdLSB(getLsb(apiUsageState.getId())) .setApiUsageStateIdLSB(getLsb(apiUsageState.getId()))
.setCreatedTime(apiUsageState.getCreatedTime()) .setCreatedTime(apiUsageState.getCreatedTime())
.setEntityType(TransportProtos.EntityTypeProto.forNumber(apiUsageState.getEntityId().getEntityType().ordinal())) .setEntityType(toProto(apiUsageState.getEntityId().getEntityType()))
.setEntityIdMSB(getMsb(apiUsageState.getEntityId())) .setEntityIdMSB(getMsb(apiUsageState.getEntityId()))
.setEntityIdLSB(getLsb(apiUsageState.getEntityId())) .setEntityIdLSB(getLsb(apiUsageState.getEntityId()))
.setTransportState(apiUsageState.getTransportState().name()) .setTransportState(apiUsageState.getTransportState().name())