SonarQube is raising an issue on my string formatter use:
Format specifiers should be used instead of string concatenation.
I have used below java code to add padding 0 in the number.
int paddingLength = seqLength - seqNoLength;
String.format("%0" + paddingLength + "d", seqNo);