Class FacsimileTelephoneNumberSyntaxChecker

  • All Implemented Interfaces:
    Serializable, SchemaObject

    public final class FacsimileTelephoneNumberSyntaxChecker
    extends SyntaxChecker
    A SyntaxChecker which verifies that a value is a facsimile TelephoneNumber according to ITU recommendation E.123 for the Telephone number part, and from RFC 4517, par. 3.3.11 :
     fax-number       = telephone-number *( DOLLAR fax-parameter )
     telephone-number = PrintableString
     fax-parameter    = "twoDimensional" |
                        "fineResolution" |
                        "unlimitedLength" |
                        "b4Length" |
                        "a3Width" |
                        "b4Width" |
                        "uncompressed"
     
    If needed, and to allow more syntaxes, a list of regexps has been added which can be initialized to other values
    Author:
    Apache Directory Project
    See Also:
    Serialized Form
    • Method Detail

      • getRegexp

        public String getRegexp()
        Get the default regexp (either the original one, or the one that has been set)
        Returns:
        The default regexp
      • isValidSyntax

        public boolean isValidSyntax​(Object value)
        Determines if the attribute's value conforms to the attribute syntax.
        Overrides:
        isValidSyntax in class SyntaxChecker
        Parameters:
        value - the value of some attribute with the syntax
        Returns:
        true if the value is in the valid syntax, false otherwise