/* no protection*/static AttributeType getIA5StringAttributeType()
{
MutableAttributeType attributeType = new MutableAttributeType( "1.1" );
attributeType.addName( "1.1" );
LdapSyntax syntax = new LdapSyntax( "1.1.1", "", true );
syntax.setSyntaxChecker( new SyntaxChecker( "1.1.2" )
{
public boolean isValidSyntax( Object value )
{
return ( ( String ) value == null ) || ( ( ( String ) value ).length() < 7 );
}