public abstract class AbstractSchemaObject extends Object implements SchemaObject
| Modifier and Type | Field and Description |
|---|---|
protected String |
description
A short description of this SchemaObject
|
protected Map<String,List<String>> |
extensions
A map containing the list of supported extensions
|
protected boolean |
isEnabled
Whether or not this SchemaObject is enabled
|
protected boolean |
isObsolete
Whether or not this SchemaObject is obsolete
|
protected boolean |
isReadOnly
Whether or not this SchemaObject can be modified
|
protected boolean |
locked
A locked to avoid modifications when set to true
|
protected List<String> |
names
The optional names for this SchemaObject
|
protected SchemaObjectType |
objectType
The SchemaObjectType
|
protected String |
oid
The SchemaObject numeric OID
|
protected String |
schemaName
The name of the schema this object is associated with
|
static long |
serialVersionUID
The serialVersionUID
|
protected String |
specification
The SchemaObject specification
|
| Modifier | Constructor and Description |
|---|---|
protected |
AbstractSchemaObject(SchemaObjectType objectType)
Constructor used when a generic reusable SchemaObject is assigned an
OID after being instantiated.
|
protected |
AbstractSchemaObject(SchemaObjectType objectType,
String oid)
A constructor for a SchemaObject instance.
|
| Modifier and Type | Method and Description |
|---|---|
void |
addExtension(String key,
List<String> values)
Add an extension with its values
|
void |
addName(String... names)
Add a new name to the list of names for this SchemaObject.
|
void |
addToRegistries(List<Throwable> errors,
Registries registries)
Inject this SchemaObject to the given registries, updating the references to
other SchemaObject
|
void |
clear()
Clear the current SchemaObject : remove all the references to other objects,
and all the Maps.
|
protected boolean |
compareOid(String oid1,
String oid2)
Compare two oids, and return true if they are both null or
equals
|
abstract SchemaObject |
copy()
Copy the current SchemaObject on place
|
SchemaObject |
copy(SchemaObject original)
Copy a SchemaObject.
|
boolean |
equals(Object o1) |
String |
getDescription()
Gets a short description about this SchemaObject.
|
Map<String,List<String>> |
getExtensions() |
String |
getName()
Gets the first name in the set of short names for this SchemaObject if
any exists for it.
|
List<String> |
getNames()
Gets short names for this SchemaObject if any exists for it, otherwise,
returns an empty list.
|
SchemaObjectType |
getObjectType()
The SchemaObject type :
AttributeType
DitCOntentRule
DitStructureRule
LdapComparator (specific to ADS)
LdapSyntaxe
MatchingRule
MatchingRuleUse
NameForm
Normalizer (specific to ADS)
ObjectClass
SyntaxChecker (specific to ADS)
|
String |
getOid()
Gets usually what is the numeric object identifier assigned to this
SchemaObject.
|
String |
getSchemaName()
Gets the name of the schema this SchemaObject is associated with.
|
String |
getSpecification()
Gets the SchemaObject specification.
|
int |
hashCode() |
boolean |
isDisabled()
Tells if this SchemaObject is disabled.
|
boolean |
isEnabled()
Tells if this SchemaObject is enabled.
|
boolean |
isObsolete()
Gets whether or not this SchemaObject has been inactivated.
|
boolean |
isReadOnly()
Tells if this SchemaObject is ReadOnly.
|
void |
lock()
Transform the SchemaObject to an immutable object
TODO locked.
|
void |
registerOid(SchemaObject schemaObject,
Registries registries)
Register the given SchemaObject into the given registries' globalOidRegistry
|
void |
removeFromRegistries(List<Throwable> errors,
Registries registries)
Remove this SchemaObject from the given registries, updating the references to
other SchemaObject
|
void |
setDescription(String description)
Sets the SchemaObject's description
|
void |
setEnabled(boolean enabled)
Sets the SchemaObject state, either enabled or disabled.
|
void |
setExtensions(Map<String,List<String>> extensions)
Add an extensions with their values.
|
void |
setNames(List<String> names)
Sets the list of names for this SchemaObject.
|
void |
setNames(String... names)
Sets the list of names for this SchemaObject.
|
void |
setObsolete(boolean obsolete)
Sets the Obsolete flag.
|
void |
setOid(String oid)
A special method used when renaming an SchemaObject: we may have to
change it's OID
|
void |
setReadOnly(boolean isReadOnly)
Sets the SchemaObject readOnly flag
|
void |
setRegistries(Registries registries)
Inject the Registries into the SchemaObject
|
void |
setSchemaName(String schemaName)
Sets the name of the schema this SchemaObject is associated with.
|
void |
setSpecification(String specification)
Sets the SchemaObject's specification
|
public static final long serialVersionUID
protected String oid
protected boolean isEnabled
protected boolean isReadOnly
protected boolean isObsolete
protected String description
protected String specification
protected String schemaName
protected SchemaObjectType objectType
protected Map<String,List<String>> extensions
protected volatile boolean locked
protected AbstractSchemaObject(SchemaObjectType objectType, String oid)
objectType - The SchemaObjectType to createprotected AbstractSchemaObject(SchemaObjectType objectType)
objectType - The SchemaObjectType to createpublic String getOid()
getOid in interface SchemaObjectpublic void setOid(String oid)
setOid in interface SchemaObjectoid - The new OIDpublic List<String> getNames()
getNames in interface SchemaObjectpublic String getName()
getName in interface SchemaObjectpublic void addToRegistries(List<Throwable> errors, Registries registries) throws LdapException
addToRegistries in interface SchemaObjecterrors - The errors we gotregistries - The RegistriesLdapExceptionpublic void removeFromRegistries(List<Throwable> errors, Registries registries) throws LdapException
removeFromRegistries in interface SchemaObjecterrors - The errors we gotregistries - The RegistriesLdapExceptionpublic void setRegistries(Registries registries)
setRegistries in interface SchemaObjectregistries - The Registriespublic void addName(String... names)
addName in interface SchemaObjectnames - The names to addpublic void setNames(List<String> names)
setNames in interface SchemaObjectnames - The list of names. Can be emptypublic void setNames(String... names)
names - The list of names.public String getDescription()
getDescription in interface SchemaObjectpublic void setDescription(String description)
setDescription in interface SchemaObjectdescription - The SchemaObject's descriptionpublic String getSpecification()
getSpecification in interface SchemaObjectpublic void setSpecification(String specification)
setSpecification in interface SchemaObjectspecification - The SchemaObject's specificationpublic boolean isEnabled()
isEnabled in interface SchemaObjectschemaEnabled - the associated schema statuspublic boolean isDisabled()
isDisabled in interface SchemaObjectpublic void setEnabled(boolean enabled)
setEnabled in interface SchemaObjectenabled - The current SchemaObject statepublic boolean isReadOnly()
isReadOnly in interface SchemaObjectpublic void setReadOnly(boolean isReadOnly)
setReadOnly in interface SchemaObjectenabled - The current SchemaObject ReadOnly statuspublic boolean isObsolete()
isObsolete in interface SchemaObjectpublic void setObsolete(boolean obsolete)
setObsolete in interface SchemaObjectobsolete - The Obsolete flag statepublic Map<String,List<String>> getExtensions()
getExtensions in interface SchemaObjectpublic void addExtension(String key, List<String> values)
addExtension in interface SchemaObjectkey - The extension keyvalues - The associated valuespublic void setExtensions(Map<String,List<String>> extensions)
setExtensions in interface SchemaObjectkey - The extension keyvalues - The associated valuespublic SchemaObjectType getObjectType()
getObjectType in interface SchemaObjectpublic String getSchemaName()
getSchemaName in interface SchemaObjectpublic void setSchemaName(String schemaName)
setSchemaName in interface SchemaObjectschemaName - the new schema namepublic int hashCode()
hashCode in interface SchemaObjecthashCode in class ObjectObject.hashCode()public boolean equals(Object o1)
equals in interface SchemaObjectequals in class ObjectObject.equals(Object)public void registerOid(SchemaObject schemaObject, Registries registries) throws LdapException
registerOid in interface SchemaObjectschemaObject - the SchemaObject we want to registerregistries - The registries in which we want it to be storedLdapException - If the OID is invalidpublic abstract SchemaObject copy()
copy in interface SchemaObjectprotected boolean compareOid(String oid1, String oid2)
public SchemaObject copy(SchemaObject original)
copy in interface SchemaObjectpublic void clear()
clear in interface SchemaObjectpublic final void lock()
lock in interface SchemaObjectCopyright © 2003–2016 The Apache Software Foundation. All rights reserved.