本文整理汇总了Java中org.apache.directory.api.ldap.model.message.AddRequest.setEntry方法的典型用法代码示例。如果您正苦于以下问题:Java AddRequest.setEntry方法的具体用法?Java AddRequest.setEntry怎么用?Java AddRequest.setEntry使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.apache.directory.api.ldap.model.message.AddRequest
的用法示例。
在下文中一共展示了AddRequest.setEntry方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: add
import org.apache.directory.api.ldap.model.message.AddRequest; //导入方法依赖的package包/类
/**
* {@inheritDoc}
*/
@Override
public void add( Entry entry ) throws LdapException
{
if ( entry == null )
{
String msg = "Cannot add an empty entry";
LOG.debug( msg );
throw new IllegalArgumentException( msg );
}
AddRequest addRequest = new AddRequestImpl();
addRequest.setEntry( entry );
AddResponse addResponse = add( addRequest );
processResponse( addResponse );
}
示例2: addAsync
import org.apache.directory.api.ldap.model.message.AddRequest; //导入方法依赖的package包/类
/**
* {@inheritDoc}
*/
@Override
public AddFuture addAsync( Entry entry ) throws LdapException
{
if ( entry == null )
{
String msg = "Cannot add null entry";
LOG.debug( msg );
throw new IllegalArgumentException( msg );
}
AddRequest addRequest = new AddRequestImpl();
addRequest.setEntry( entry );
return addAsync( addRequest );
}
示例3: addEntry
import org.apache.directory.api.ldap.model.message.AddRequest; //导入方法依赖的package包/类
/**
* 添加条目
*
* Apache LDAP 主要提供三种添加条目的方法。当前用:同步的、服务器有返回响应的。
*
* @author ZhengWei(HY)
* @createDate 2017-02-14
* @version v1.0
*
* @param i_Entry
* @return 添加成功返回true。
*/
public boolean addEntry(Entry i_Entry)
{
LdapConnection v_Conn = null;
AddRequest v_AddRequest = new AddRequestImpl();
AddResponse v_Response = null;
try
{
v_AddRequest.setEntry( i_Entry);
v_AddRequest.addControl(new ManageDsaITImpl());
v_Conn = this.getConnection();
v_Response = v_Conn.add(v_AddRequest);
}
catch (Exception exce)
{
exce.printStackTrace();
}
finally
{
this.closeConnection(v_Conn);
}
return LDAP.isSuccess(v_Response);
}