if ( objectClass.contains( "alias" ) )
{
String msg = "Attempt to add entry to alias '" + upName
+ "' not allowed.";
ResultCodeEnum rc = ResultCodeEnum.ALIASPROBLEM;
NamingException e = new LdapNamingException( msg, rc );
e.setResolvedName( parentDn );
throw e;
}
nextInterceptor.add( upName, normName, entry );
}