Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

net::ldap::control::vlvresponse(3) [osx man page]

Net::LDAP::Control::VLVResponse(3)			User Contributed Perl Documentation			Net::LDAP::Control::VLVResponse(3)

NAME
Net::LDAP::Control::VLVResponse -- LDAPv3 Virtual List View server response SYNOPSIS
See Net::LDAP::Control::VLV DESCRIPTION
"Net::LDAP::Control::VLVResponse" is a sub-class of Net::LDAP::Control. It provides a class for manipulating the LDAP Virtual List View Response control "" If the server supports Virtual List Views, then the response from a search operation will include a VLVResponse control. CONSTRUCTOR ARGUMENTS
In addition to the constructor arguments described in Net::LDAP::Control the following are provided. content An estimate of the number of entries in the complete list. This value should be used in any subsequent Virtual List View control using the same list. context An arbitrary value which is used to associate subsequent requests with the request which this control is a response for. This value should be copied by the client into the Virtual List View control for any subsequent search that uses the same list. result A result code indicating the result of the Virtual List View request. This may be any of the codes listed below. target The list offset of the target entry. METHODS
As with Net::LDAP::Control each constructor argument described above is also available as a method on the object which will return the current value for the attribute if called without an argument, and set a new value for the attribute if called with an argument. RESULT CODES
Possible results from a sort request are listed below. See Net::LDAP::Constant for a definition of each. LDAP_SUCCESS LDAP_OPERATIONS_ERROR LDAP_TIMELIMIT_EXCEEDED LDAP_ADMIN_LIMIT_EXCEEDED LDAP_INSUFFICIENT_ACCESS LDAP_BUSY LDAP_UNWILLING_TO_PERFORM LDAP_OTHER LDAP_SORT_CONTROL_MISSING LDAP_INDEX_RANGE_ERROR SEE ALSO
Net::LDAP, Net::LDAP::Control AUTHOR
Graham Barr <gbarr@pobox.com> Please report any bugs, or post any suggestions, to the perl-ldap mailing list <perl-ldap@perl.org> COPYRIGHT
Copyright (c) 2000-2004 Graham Barr. All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.16.2 2012-09-20 Net::LDAP::Control::VLVResponse(3)

Check Out this Related Man Page

Net::LDAP::Control::VLV(3)				User Contributed Perl Documentation				Net::LDAP::Control::VLV(3)

NAME
Net::LDAP::Control::VLV - LDAPv3 Virtual List View control object SYNOPSIS
use Net::LDAP; use Net::LDAP::Control::VLV; use Net::LDAP::Constant qw( LDAP_CONTROL_VLVRESPONSE ); $ldap = Net::LDAP->new( "ldap.mydomain.eg" ); # Get the first 20 entries $vlv = Net::LDAP::Control::VLV->new( before => 0, # No entries from before target entry after => 19, # 19 entries after target entry content => 0, # List size unknown offset => 1, # Target entry is the first ); $sort = Net::LDAP::Control::Sort->new( order => 'cn' ); @args = ( base => "o=Ace Industry, c=us", scope => "subtree", filter => "(objectClass=inetOrgPerson)", callback => &process_entry, # Call this sub for each entry control => [ $vlv, $sort ], ); $mesg = $ldap->search( @args ); # Get VLV response control ($resp) = $mesg->control( LDAP_CONTROL_VLVRESPONSE ) or die; $vlv->response( $resp ); # Set the control to get the last 20 entries $vlv->end; $mesg = $ldap->search( @args ); # Get VLV response control ($resp) = $mesg->control( LDAP_CONTROL_VLVRESPONSE ) or die; $vlv->response( $resp ); # Now get the previous page $vlv->scroll_page( -1 ); $mesg = $ldap->search( @args ); # Get VLV response control ($resp) = $mesg->control( LDAP_CONTROL_VLVRESPONSE ) or die; $vlv->response( $resp ); # Now page with first entry starting with "B" in the middle $vlv->before(9); # Change page to show 9 before $vlv->after(10); # Change page to show 10 after $vlv->assert("B"); # assert "B" $mesg = $ldap->search( @args ); DESCRIPTION
"Net::LDAP::Control::VLV" provides an interface for the creation and manipulation of objects that represent the Virtual List View as described by draft-ietf-ldapext-ldapv3-vlv-09.txt. When using a Virtual List View control in a search, it must be accompanied by a sort control. See Net::LDAP::Control::Sort CONSTRUCTOR ARGUMENTS
In addition to the constructor arguments described in Net::LDAP::Control the following are provided. after Set the number of entries the server should return from the list after the target entry. assert Set the assertion value user to locate the target entry. This value should be a legal value to compare with the first attribute in the sort control that is passed with the VLV control. The target entry is the first entry in the list which is greater than or equal the assert value. before Set the number of entries the server should return from the list before the target entry. content Set the number of entries in the list. On the first search this value should be set to zero. On subsequent searches it should be set to the length of the list, as returned by the server in the VLVResponse control. context Set the context identifier. On the first search this value should be set to zero. On subsequent searches it should be set to the context value returned by the server in the VLVResponse control. offset Set the offset of the target entry. METHODS As with Net::LDAP::Control each constructor argument described above is also available as a method on the object which will return the current value for the attribute if called without an argument, and set a new value for the attribute if called with an argument. The "offset" and "assert" attributes are mutually exclusive. Setting one or the other will cause previous values set by the other to be forgotten. The "content" attribute is also associated with the "offset" attribute, so setting "assert" will cause any "content" value to be forgotten. end Set the target entry to the end of the list. This method will change the "before" and "after" attributes so that the target entry is the last in the page. response VLV_RESPONSE Set the attributes in the control as per VLV_RESPONSE. VLV_RESPONSE should be a control of type Net::LDAP::Control::VLVResponse returned from the server. "response" will populate the "context", "offset" and "content" attributes of the control with the values from VLV_RESPONSE. Because this sets the "offset" attribute, any previous setting of the "assert" attribute will be forgotten. scroll NUM Move the target entry by NUM entries. A positive NUM will move the target entry towards the end of the list and a negative NUM will move the target entry towards the start of the list. Returns the index of the new target entry, or "undef" if the current target is identified by an assertion. "scroll" may change the "before" and "after" attributes if the scroll value would cause the page to go off either end of the list. But the page size will be maintained. scroll_page NUM Scroll by NUM pages. This method simple calculates the current page size and calls "scroll" with "NUM * $page_size" start Set the target entry to the start of the list. This method will change the "before" and "after" attributes to the target entry is the first entry in the page. SEE ALSO
Net::LDAP, Net::LDAP::Control, Net::LDAP::Control::Sort, Net::LDAP::Control::VLVResponse AUTHOR
Graham Barr <gbarr@pobox.com> Please report any bugs, or post any suggestions, to the perl-ldap mailing list <perl-ldap@perl.org> COPYRIGHT
Copyright (c) 2000-2004 Graham Barr. All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.18.2 2013-12-23 Net::LDAP::Control::VLV(3)
Man Page