@Documented
@Constraint(validatedBy=GlnValidator.class)
@Target({METHOD,FIELD,ANNOTATION_TYPE,CONSTRUCTOR,PARAMETER})
@Retention(RUNTIME)
@Size(min=13)
@Digits(integer=13,
fraction=0)
public @interface Gln
The annotated element must be a valid Global Location Number (until 2009 known as International
Location Number).
Supported types are Strings, other Objects are transfered to Strings, null elements
are considered valid.
There are numeric, size and checksum tests by apache commons validation routines.
- Author:
- Manfred Tremmel