public abstract class AbstractSchemaLoader extends Object implements SchemaLoader
| Modifier and Type | Field and Description |
|---|---|
private boolean |
relaxed
The flag that tells about the SchemaLoader mode : relaxed or strict
|
protected Map<String,Schema> |
schemaMap
A map of all available schema names to schema objects.
|
| Constructor and Description |
|---|
AbstractSchemaLoader() |
| Modifier and Type | Method and Description |
|---|---|
void |
addSchema(Schema schema)
Add a new schema to the schema's list
|
private Schema[] |
buildSchemaArray(String... schemaNames) |
Collection<Schema> |
getAllEnabled() |
Collection<Schema> |
getAllSchemas() |
protected Schema |
getSchema(Entry entry)
Gets the schema.
|
Schema |
getSchema(String schemaName)
Gets a schema object based on it's name.
|
boolean |
isRelaxed() |
boolean |
isStrict() |
List<Entry> |
loadAttributeTypes(String... schemaNames)
Build a list of AttributeTypes read from the underlying storage for
a list of specific schema, using their name
|
List<Entry> |
loadComparators(String... schemaNames)
Build a list of Comparators read from the underlying storage for
a list of specific schema, using their name
|
List<Entry> |
loadDitContentRules(String... schemaNames)
Build a list of DitContentRules read from the underlying storage for
a list of specified schema names
|
List<Entry> |
loadDitStructureRules(String... schemaNames)
Build a list of DitStructureRules read from the underlying storage for
a list of specified schema names
|
List<Entry> |
loadMatchingRules(String... schemaNames)
Build a list of MatchingRules read from the underlying storage for
a list of specific schema, using their name
|
List<Entry> |
loadMatchingRuleUses(String... schemaNames)
Build a list of MatchingRuleUses read from the underlying storage for
a list of specified schema names
|
List<Entry> |
loadNameForms(String... schemaNames)
Build a list of NameForms read from the underlying storage for
a list of specified schema names
|
List<Entry> |
loadNormalizers(String... schemaNames)
Build a list of Normalizers read from the underlying storage for
a list of specified schema names
|
List<Entry> |
loadObjectClasses(String... schemaNames)
Build a list of ObjectClasses read from the underlying storage for
a list of specified schema names
|
List<Entry> |
loadSyntaxCheckers(String... schemaNames)
Build a list of SyntaxCheckers read from the underlying storage for
a list of specified schema names
|
List<Entry> |
loadSyntaxes(String... schemaNames)
Build a list of Syntaxes read from the underlying storage for
a list of specified schema names
|
void |
removeSchema(Schema schema)
Remove a schema from the schema's list
|
void |
setRelaxed(boolean relaxed)
Set the SchemzLoader in STRICT or RELAXED mode.
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitloadAttributeTypes, loadComparators, loadDitContentRules, loadDitStructureRules, loadMatchingRules, loadMatchingRuleUses, loadNameForms, loadNormalizers, loadObjectClasses, loadSyntaxCheckers, loadSyntaxesprotected final Map<String,Schema> schemaMap
private boolean relaxed
public final Collection<Schema> getAllEnabled()
getAllEnabled in interface SchemaLoaderpublic final Collection<Schema> getAllSchemas()
getAllSchemas in interface SchemaLoaderpublic Schema getSchema(String schemaName)
getSchema in interface SchemaLoaderschemaName - the name of the schema to loadpublic void addSchema(Schema schema)
addSchema in interface SchemaLoaderschema - The schema to addpublic void removeSchema(Schema schema)
removeSchema in interface SchemaLoaderschema - The schema to removeprotected Schema getSchema(Entry entry) throws LdapException
entry - the entryLdapException - the exceptionpublic List<Entry> loadAttributeTypes(String... schemaNames) throws LdapException, IOException
loadAttributeTypes in interface SchemaLoaderschemaNames - the schema names from which AttributeTypes are loadedLdapException - if there are failures accessing AttributeType informationIOException - If we can't read the schemaObjectpublic List<Entry> loadComparators(String... schemaNames) throws LdapException, IOException
loadComparators in interface SchemaLoaderschemaNames - the schema names from which Comparators are loadedLdapException - if there are failures accessing Comparator informationIOException - If we can't read the schemaObjectpublic List<Entry> loadDitContentRules(String... schemaNames) throws LdapException, IOException
loadDitContentRules in interface SchemaLoaderschemaNames - the schema names from which DitContentRules are loadedLdapException - if there are failures accessing DitContentRule informationIOException - If we can't read the schemaObjectpublic List<Entry> loadDitStructureRules(String... schemaNames) throws LdapException, IOException
loadDitStructureRules in interface SchemaLoaderschemaNames - the schema names from which DitStructureRules are loadedLdapException - if there are failures accessing DitStructureRule informationIOException - If we can't read the schemaObjectpublic List<Entry> loadMatchingRules(String... schemaNames) throws LdapException, IOException
loadMatchingRules in interface SchemaLoaderschemaNames - the schema names from which MatchingRules are loadedLdapException - if there are failures accessing MatchingRule informationIOException - If we can't read the schemaObjectpublic List<Entry> loadMatchingRuleUses(String... schemaNames) throws LdapException, IOException
loadMatchingRuleUses in interface SchemaLoaderschemaNames - the schema names from which MatchingRuleUses are loadedLdapException - if there are failures accessing MatchingRuleUses informationIOException - If we can't read the schemaObjectpublic List<Entry> loadNameForms(String... schemaNames) throws LdapException, IOException
loadNameForms in interface SchemaLoaderschemaNames - the schema names from which NameForms are loadedLdapException - if there are failures accessing NameForms informationIOException - If we can't read the schemaObjectpublic List<Entry> loadNormalizers(String... schemaNames) throws LdapException, IOException
loadNormalizers in interface SchemaLoaderschemaNames - the schema names from which Normalizers are loadedLdapException - if there are failures accessing Normalizer informationIOException - If we can't read the schemaObjectpublic List<Entry> loadObjectClasses(String... schemaNames) throws LdapException, IOException
loadObjectClasses in interface SchemaLoaderschemaNames - the schema names from which ObjectClasses are loadedLdapException - if there are failures accessing ObjectClasses informationIOException - If we can't read the schemaObjectpublic List<Entry> loadSyntaxes(String... schemaNames) throws LdapException, IOException
loadSyntaxes in interface SchemaLoaderschemaNames - the schema names from which Syntaxes are loadedLdapException - if there are failures accessing Syntax informationIOException - If we can't read the schemaObjectpublic List<Entry> loadSyntaxCheckers(String... schemaNames) throws LdapException, IOException
loadSyntaxCheckers in interface SchemaLoaderschemaNames - the schema names from which SyntaxCheckers are loadedLdapException - if there are failures accessing SyntaxChecker informationIOException - If we had some issues loading the schemaspublic boolean isRelaxed()
isRelaxed in interface SchemaLoaderpublic boolean isStrict()
isStrict in interface SchemaLoaderpublic void setRelaxed(boolean relaxed)
setRelaxed in interface SchemaLoaderrelaxed - if true, the SchemaLoader will be in relaxed mode, otherwise
it will be in strict mode (the default)Copyright © 2003–2022 The Apache Software Foundation. All rights reserved.