blob: 76023ead3c5148561cbcf939bf6a3d0596b3a10a [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*
*/
package org.apache.directory.api.ldap.model.schema;
/**
* Used to validate values of a particular syntax. This interface does not
* correlate to any LDAP or X.500 construct. It has been created as a means to
* enforce a syntax within the Eve server.
*
* @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
*/
public abstract class SyntaxChecker extends LoadableSchemaObject
{
/** The mandatory serialVersionUID */
public static final long serialVersionUID = 1L;
/**
* The SyntaxChecker base constructor
* @param oid The associated OID
*/
protected SyntaxChecker( String oid )
{
super( SchemaObjectType.SYNTAX_CHECKER, oid );
}
/**
* The SyntaxChecker default constructor where the oid is set after
* instantiation.
*/
protected SyntaxChecker()
{
super( SchemaObjectType.SYNTAX_CHECKER );
}
/**
* Determines if the attribute's value conforms to the attribute syntax.
*
* @param value the value of some attribute with the syntax
* @return true if the value is in the valid syntax, false otherwise
*/
public abstract boolean isValidSyntax( Object value );
/**
* Store the SchemaManager in this instance. It may be necessary for some
* syntaxChecker which needs to have access to the oidNormalizer Map.
*
* @param schemaManager the schemaManager to store
*/
public void setSchemaManager( SchemaManager schemaManager )
{
// Do nothing (general case).
}
/**
* {@inheritDoc}
*/
@Override
public boolean equals( Object o )
{
if ( !super.equals( o ) )
{
return false;
}
return o instanceof SyntaxChecker;
}
/**
* {@inheritDoc}
*/
@Override
public String toString()
{
return objectType + " " + DescriptionUtils.getDescription( this );
}
}