Class DeliveryMethodSyntaxChecker

  • All Implemented Interfaces:
    Serializable, SchemaObject

    public final class DeliveryMethodSyntaxChecker
    extends SyntaxChecker
    A SyntaxChecker which verifies that a value is a delivery method according to RFC 4517. From RFC 4517 & RFC 4512:
     DeliveryMethod = pdm *( WSP DOLLAR WSP pdm )
    
     pdm = "any" | "mhs" | "physical" | "telex" | "teletex" |
           "g3fax" | "g4fax" | "ia5" | "videotex" | "telephone"
               
     WSP     = 0*SPACE  ; zero or more " "
     DOLLAR  = %x24 ; dollar sign ("$")
     SPACE   = %x20 ; space (" ")
     
    Author:
    Apache Directory Project
    See Also:
    Serialized Form
    • Method Detail

      • 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