org.apache.directory.api.ldap.model.schema.syntaxCheckers
Class OidLenSyntaxChecker
java.lang.Object
org.apache.directory.api.ldap.model.schema.AbstractSchemaObject
org.apache.directory.api.ldap.model.schema.LoadableSchemaObject
org.apache.directory.api.ldap.model.schema.SyntaxChecker
org.apache.directory.api.ldap.model.schema.syntaxCheckers.OidLenSyntaxChecker
- All Implemented Interfaces:
- Serializable, SchemaObject
public class OidLenSyntaxChecker
- extends SyntaxChecker
A SyntaxChecker which verifies that a value is a numeric oid and a length
constraint according to RFC 4512.
From RFC 4512 :
noidlen = numericoid [ LCURLY len RCURLY ]
numericoid = number 1*( DOT number )
len = number
number = DIGIT | ( LDIGIT 1*DIGIT )
DIGIT = %x30 | LDIGIT ; "0"-"9"
LDIGIT = %x31-39 ; "1"-"9"
DOT = %x2E ; period (".")
LCURLY = %x7B ; left curly brace "{"
RCURLY = %x7D ; right curly brace "}"
- Author:
- Apache Directory Project
- See Also:
- Serialized Form
| Fields inherited from class org.apache.directory.api.ldap.model.schema.AbstractSchemaObject |
description, extensions, isEnabled, isObsolete, isReadOnly, locked, names, objectType, oid, schemaName, specification |
|
Method Summary |
boolean |
isValidSyntax(Object value)
Determines if the attribute's value conforms to the attribute syntax. |
| Methods inherited from class org.apache.directory.api.ldap.model.schema.AbstractSchemaObject |
addExtension, addExtension, addName, clear, compareOid, copy, getDescription, getExtensions, getName, getNames, getObjectType, getOid, getSchemaName, getSpecification, hashCode, isDisabled, isEnabled, isObsolete, isReadOnly, lock, setDescription, setEnabled, setExtensions, setNames, setNames, setObsolete, setOid, setReadOnly, setSchemaName, setSpecification, unlock |
OidLenSyntaxChecker
public OidLenSyntaxChecker()
- Creates a new instance of OidLenSyntaxChecker.
isValidSyntax
public boolean isValidSyntax(Object value)
- Determines if the attribute's value conforms to the attribute syntax.
- Specified by:
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
Copyright © 2003-2013 The Apache Software Foundation. All Rights Reserved.