blob: 6d04ac45623c50bad5f1953f31f9523a402c0505 [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, eCopyOfUuidSyntaxCheckerither express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*
*/
package org.apache.directory.shared.ldap.schema.syntaxCheckers;
import org.apache.directory.shared.ldap.constants.SchemaConstants;
import org.apache.directory.shared.ldap.schema.SyntaxChecker;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* An CSN SID syntax checker.
*
* @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
*/
public class CsnSidSyntaxChecker extends SyntaxChecker
{
/** A logger for this class */
private static final Logger LOG = LoggerFactory.getLogger( CsnSidSyntaxChecker.class );
/** The serialVersionUID */
private static final long serialVersionUID = 1L;
/**
* Creates a new instance of CsnSyntaxChecker.
*/
public CsnSidSyntaxChecker()
{
super( SchemaConstants.CSN_SID_SYNTAX );
}
/**
* {@inheritDoc}
*/
public boolean isValidSyntax( Object value )
{
if ( value == null )
{
LOG.debug( "Syntax invalid for 'null'" );
return false;
}
if ( ! ( value instanceof String ) )
{
LOG.debug( "Syntax invalid for '{}'", value );
return false;
}
String sidStr = (String)value;
if ( sidStr.length() > 3 )
{
LOG.debug( "Syntax invalid for '{}'", value );
return false;
}
// The SID must be an hexadecimal number between 0x00 and 0xFFF
try
{
int sid = Integer.parseInt( sidStr, 16 );
if ( ( sid < 0 ) || ( sid > 0x0fff ) )
{
LOG.debug( "Syntax invalid for '{}'", value );
return false;
}
}
catch ( NumberFormatException nfe )
{
LOG.debug( "Syntax invalid for '{}'", value );
return false;
}
LOG.debug( "Syntax valid for '{}'", value );
return true;
}
}