org.opends.server.admin.std.server
Interface AttributeSyntaxCfg

All Superinterfaces:
Configuration
All Known Subinterfaces:
AttributeTypeDescriptionAttributeSyntaxCfg, DirectoryStringAttributeSyntaxCfg, TelephoneNumberAttributeSyntaxCfg

public interface AttributeSyntaxCfg
extends Configuration

A server-side interface for querying Attribute Syntax settings.

Attribute Syntaxes define the type of data that may be stored in an attribute with that syntax. A syntax is generally associated with a set of matching rules that indicate how to perform matching operations against values of that syntax.


Method Summary
 void addChangeListener(ConfigurationChangeListener<AttributeSyntaxCfg> listener)
          Register to be notified when this Attribute Syntax is changed.
 java.lang.Class<? extends AttributeSyntaxCfg> configurationClass()
          Gets the configuration class associated with this Attribute Syntax.
 java.lang.String getJavaClass()
          Gets the "java-class" property.
 boolean isEnabled()
          Gets the "enabled" property.
 void removeChangeListener(ConfigurationChangeListener<AttributeSyntaxCfg> listener)
          Deregister an existing Attribute Syntax configuration change listener.
 
Methods inherited from interface org.opends.server.admin.Configuration
dn
 

Method Detail

configurationClass

java.lang.Class<? extends AttributeSyntaxCfg> configurationClass()
Gets the configuration class associated with this Attribute Syntax.

Specified by:
configurationClass in interface Configuration
Returns:
Returns the configuration class associated with this Attribute Syntax.

addChangeListener

void addChangeListener(ConfigurationChangeListener<AttributeSyntaxCfg> listener)
Register to be notified when this Attribute Syntax is changed.

Parameters:
listener - The Attribute Syntax configuration change listener.

removeChangeListener

void removeChangeListener(ConfigurationChangeListener<AttributeSyntaxCfg> listener)
Deregister an existing Attribute Syntax configuration change listener.

Parameters:
listener - The Attribute Syntax configuration change listener.

isEnabled

boolean isEnabled()
Gets the "enabled" property.

Indicates whether the Attribute Syntax is enabled.

Returns:
Returns the value of the "enabled" property.

getJavaClass

java.lang.String getJavaClass()
Gets the "java-class" property.

Specifies the fully-qualified name of the Java class that provides the Attribute Syntax implementation.

Returns:
Returns the value of the "java-class" property.