public final class OidLenSyntaxChecker extends SyntaxChecker
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 "}"
| Modifier and Type | Class and Description |
|---|---|
static class |
OidLenSyntaxChecker.Builder
A static Builder for this class
|
SyntaxChecker.SCBuilder<SC>| Modifier and Type | Field and Description |
|---|---|
static OidLenSyntaxChecker |
INSTANCE
A static instance of OidLenSyntaxChecker
|
LOG, serialVersionUIDdescription, extensions, h, isEnabled, isObsolete, locked, names, objectType, oid, schemaName, specification| Modifier | Constructor and Description |
|---|---|
private |
OidLenSyntaxChecker(String oid)
Creates a new instance of OidLenSyntaxChecker.
|
| Modifier and Type | Method and Description |
|---|---|
static OidLenSyntaxChecker.Builder |
builder() |
boolean |
isValidSyntax(Object value)
Determines if the attribute's value conforms to the attribute syntax.
|
equals, setSchemaManager, toStringcopy, getBytecode, getFqcn, hashCode, isValid, setBytecode, setFqcnaddExtension, addExtension, addName, clear, compareOid, computeHashCode, copy, getDescription, getExtension, getExtensions, getName, getNames, getObjectType, getOid, getSchemaName, getSpecification, hasExtension, isDisabled, isEnabled, isObsolete, lock, setDescription, setEnabled, setExtensions, setNames, setNames, setObsolete, setOid, setSchemaName, setSpecification, unlockpublic static final OidLenSyntaxChecker INSTANCE
private OidLenSyntaxChecker(String oid)
oid - The OIDpublic static OidLenSyntaxChecker.Builder builder()
public boolean isValidSyntax(Object value)
isValidSyntax in class SyntaxCheckervalue - the value of some attribute with the syntaxCopyright © 2003–2022 The Apache Software Foundation. All rights reserved.