本文整理汇总了Java中org.apache.directory.api.ldap.model.exception.LdapException.getLocalizedMessage方法的典型用法代码示例。如果您正苦于以下问题:Java LdapException.getLocalizedMessage方法的具体用法?Java LdapException.getLocalizedMessage怎么用?Java LdapException.getLocalizedMessage使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.apache.directory.api.ldap.model.exception.LdapException
的用法示例。
在下文中一共展示了LdapException.getLocalizedMessage方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: get
import org.apache.directory.api.ldap.model.exception.LdapException; //导入方法依赖的package包/类
/**
* {@inheritDoc}
*/
@Override
public Attribute get( String alias )
{
try
{
String id = getId( alias );
if ( schemaManager != null )
{
try
{
AttributeType attributeType = schemaManager.lookupAttributeTypeRegistry( id );
return attributes.get( attributeType.getOid() );
}
catch ( LdapException ne )
{
String message = ne.getLocalizedMessage();
LOG.error( message );
return null;
}
}
else
{
return attributes.get( id );
}
}
catch ( IllegalArgumentException iea )
{
LOG.error( I18n.err( I18n.ERR_04134, alias ) );
return null;
}
}
示例2: readExternal
import org.apache.directory.api.ldap.model.exception.LdapException; //导入方法依赖的package包/类
/**
* {@inheritDoc}
*/
@Override
public void readExternal( ObjectInput in ) throws IOException, ClassNotFoundException
{
// Read the Dn
dn = new Dn( schemaManager );
dn.readExternal( in );
// Read the number of attributes
int nbAttributes = in.readInt();
// Read the attributes
for ( int i = 0; i < nbAttributes; i++ )
{
// Read each attribute
Attribute attribute = new DefaultAttribute();
attribute.readExternal( in );
if ( schemaManager != null )
{
try
{
AttributeType attributeType = schemaManager.lookupAttributeTypeRegistry( attribute.getId() );
attribute.apply( attributeType );
attributes.put( attributeType.getOid(), attribute );
}
catch ( LdapException le )
{
String message = le.getLocalizedMessage();
LOG.error( message );
throw new IOException( message, le );
}
}
else
{
attributes.put( attribute.getId(), attribute );
}
}
}