Class LeitwegValidator
In e-invoices to German public entities there is a specific identification schema called Leitweg-ID. The schema can be found in the most recent version of the ISO 6523 ICD list. The prefix of this specfic ICD identifier is 0204.
The spec "Formatspezifikation Leitweg-ID 2.0.1" (in deu) can be found in
KoSIT.
In short: there are three parts separated by "-" HYPHEN-MINUS
- a mandatory numeric general starting with two chars region id, "02" for Hamburg, "99" for federal institutons
- an optional alphanumeric detail
- two mandatory check digits calculated according to modulus 97 algorithm
992-90009-96
for Deutsche Bahn AG-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic LeitwegValidator
Return a singleton instance of the validator using the default formatsboolean
Validate a Leitweg-IDCheck the id is a valid MOD 97-10 id.
-
Constructor Details
-
LeitwegValidator
public LeitwegValidator()
-
-
Method Details
-
getInstance
Return a singleton instance of the validator using the default formats- Returns:
- A singleton instance of the validator
-
isValid
Validate a Leitweg-ID- Parameters:
id
- The value validation is being performed on- Returns:
true
if the value is valid
-
validate
Check the id is a valid MOD 97-10 id.If valid, this method returns the Leitweg-ID with formatting characters removed (i.e. hyphen).
- Parameters:
code
- The Leitweg-ID to validate.- Returns:
- A Leitweg-ID without hyphen if valid, otherwise
null
.Note The return is not valid Leitweg-ID because HYPHEN-MINUS is part of the format.
-