当前位置: 首页>>代码示例>>Java>>正文


Java LdapException.getLocalizedMessage方法代码示例

本文整理汇总了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;
    }
}
 
开发者ID:apache,项目名称:directory-ldap-api,代码行数:37,代码来源:DefaultEntry.java

示例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 );
        }
    }
}
 
开发者ID:apache,项目名称:directory-ldap-api,代码行数:43,代码来源:DefaultEntry.java


注:本文中的org.apache.directory.api.ldap.model.exception.LdapException.getLocalizedMessage方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。