本文整理匯總了Java中org.apache.directory.api.ldap.model.message.controls.PagedResults.getCookieValue方法的典型用法代碼示例。如果您正苦於以下問題:Java PagedResults.getCookieValue方法的具體用法?Java PagedResults.getCookieValue怎麽用?Java PagedResults.getCookieValue使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類org.apache.directory.api.ldap.model.message.controls.PagedResults
的用法示例。
在下文中一共展示了PagedResults.getCookieValue方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: abandonPagedSearch
import org.apache.directory.api.ldap.model.message.controls.PagedResults; //導入方法依賴的package包/類
/**
* Manage the abandoned Paged Search (when paged size = 0). We have to
* remove the cookie and its associated cursor from the session.
*/
private SearchResultDone abandonPagedSearch( LdapSession session, SearchRequest req ) throws Exception
{
PagedResults pagedSearchControl = ( PagedResults ) req.getControls().get( PagedResults.OID );
byte[] cookie = pagedSearchControl.getCookie();
if ( !Strings.isEmpty( cookie ) )
{
// If the cookie is not null, we have to destroy the associated
// cursor stored into the session (if any)
int cookieValue = pagedSearchControl.getCookieValue();
PagedSearchContext psCookie = session.removePagedSearchContext( cookieValue );
pagedSearchControl.setCookie( psCookie.getCookie() );
pagedSearchControl.setSize( 0 );
pagedSearchControl.setCritical( true );
// Close the cursor
EntryFilteringCursor cursor = psCookie.getCursor();
if ( cursor != null )
{
cursor.close();
}
}
else
{
pagedSearchControl.setSize( 0 );
pagedSearchControl.setCritical( true );
}
// and return
// DO NOT WRITE THE RESPONSE - JUST RETURN IT
LdapResult ldapResult = req.getResultResponse().getLdapResult();
ldapResult.setResultCode( ResultCodeEnum.SUCCESS );
req.getResultResponse().addControl( pagedSearchControl );
return req.getResultResponse();
}
示例2: abandonPagedSearch
import org.apache.directory.api.ldap.model.message.controls.PagedResults; //導入方法依賴的package包/類
/**
* Manage the abandoned Paged Search (when paged size = 0). We have to
* remove the cookie and its associated cursor from the session.
*/
private SearchResultDone abandonPagedSearch( LdapSession session, SearchRequest req ) throws Exception
{
PagedResults pagedSearchControl = ( PagedResults ) req.getControls().get( PagedResults.OID );
byte[] cookie = pagedSearchControl.getCookie();
if ( !Strings.isEmpty( cookie ) )
{
// If the cookie is not null, we have to destroy the associated
// cursor stored into the session (if any)
int cookieValue = pagedSearchControl.getCookieValue();
PagedSearchContext psCookie = session.removePagedSearchContext( cookieValue );
pagedSearchControl.setCookie( psCookie.getCookie() );
pagedSearchControl.setSize( 0 );
pagedSearchControl.setCritical( true );
// Close the cursor
Cursor<Entry> cursor = psCookie.getCursor();
if ( cursor != null )
{
cursor.close();
}
}
else
{
pagedSearchControl.setSize( 0 );
pagedSearchControl.setCritical( true );
}
// and return
// DO NOT WRITE THE RESPONSE - JUST RETURN IT
LdapResult ldapResult = req.getResultResponse().getLdapResult();
ldapResult.setResultCode( ResultCodeEnum.SUCCESS );
req.getResultResponse().addControl( pagedSearchControl );
return ( SearchResultDone ) req.getResultResponse();
}