Class DseTypeSyntaxChecker
- 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.DseTypeSyntaxChecker
-
- All Implemented Interfaces:
Serializable,SchemaObject
public final class DseTypeSyntaxChecker extends SyntaxChecker
A SyntaxChecker which verifies that a value is a DSEType according to http://tools.ietf.org/id/draft-ietf-asid-ldapv3-attributes-03.txt, par 6.2.1.5 :<DSEType> ::= '(' <sp>* <DSEBit> <sp>* <DSEBitList> ')' <DSEBitList> ::= '$' <sp>* <DSEBit> <sp>* <DSEBitList> | e <DSEBit> ::= 'root' | 'glue' | 'cp' | 'entry' | 'alias' | 'subr' | 'nssr' | 'supr' | 'xr' | 'admPoint' | 'subentry' | 'shadow' | 'zombie' | 'immSupr' | 'rhob' | 'sa'- Author:
- Apache Directory Project
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classDseTypeSyntaxChecker.BuilderA static Builder for this class-
Nested classes/interfaces inherited from class org.apache.directory.api.ldap.model.schema.SyntaxChecker
SyntaxChecker.SCBuilder<SC>
-
-
Field Summary
Fields Modifier and Type Field Description private static Set<String>DSE_BITSThe Set which contains the DESBitsprivate static String[]DSE_BITS_STRINGSThe DSE BITS keywordsstatic DseTypeSyntaxCheckerINSTANCEA static instance of DseTypeSyntaxChecker-
Fields inherited from class org.apache.directory.api.ldap.model.schema.SyntaxChecker
LOG, serialVersionUID
-
Fields inherited from class org.apache.directory.api.ldap.model.schema.AbstractSchemaObject
description, extensions, h, isEnabled, isObsolete, locked, names, objectType, oid, schemaName, specification
-
-
Constructor Summary
Constructors Modifier Constructor Description privateDseTypeSyntaxChecker(String oid)Creates a new instance of DSETypeSyntaxChecker.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static DseTypeSyntaxChecker.Builderbuilder()booleanisValidSyntax(Object value)Determines if the attribute's value conforms to the attribute syntax.-
Methods inherited from class org.apache.directory.api.ldap.model.schema.SyntaxChecker
equals, setSchemaManager, toString
-
Methods inherited from class org.apache.directory.api.ldap.model.schema.LoadableSchemaObject
copy, getBytecode, getFqcn, hashCode, isValid, setBytecode, setFqcn
-
Methods inherited from class org.apache.directory.api.ldap.model.schema.AbstractSchemaObject
addExtension, 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, unlock
-
-
-
-
Field Detail
-
DSE_BITS_STRINGS
private static final String[] DSE_BITS_STRINGS
The DSE BITS keywords
-
INSTANCE
public static final DseTypeSyntaxChecker INSTANCE
A static instance of DseTypeSyntaxChecker
-
-
Constructor Detail
-
DseTypeSyntaxChecker
private DseTypeSyntaxChecker(String oid)
Creates a new instance of DSETypeSyntaxChecker.- Parameters:
oid- The OID to use for this SyntaxChecker
-
-
Method Detail
-
builder
public static DseTypeSyntaxChecker.Builder builder()
- Returns:
- An instance of the Builder for this class
-
isValidSyntax
public boolean isValidSyntax(Object value)
Determines if the attribute's value conforms to the attribute syntax.- Overrides:
isValidSyntaxin classSyntaxChecker- Parameters:
value- the value of some attribute with the syntax- Returns:
- true if the value is in the valid syntax, false otherwise
-
-