ldapsdk 0.0.1
LDAPSearchReference.h
Go to the documentation of this file.
1// $OpenLDAP$
2/*
3 * Copyright 2000-2013 The OpenLDAP Foundation, All Rights Reserved.
4 * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
5 */
6
7
8#ifndef LDAP_SEARCH_REFERENCE_H
9#define LDAP_SEARCH_REFERENCE_H
10
11#include <LDAPMessage.h>
12#include <LDAPUrlList.h>
13
14class LDAPRequest;
15class LDAPUrl;
16
22
23 public :
27 LDAPSearchReference(const LDAPRequest* req, LDAPMessage* msg);
28
33
37 const LDAPUrlList& getUrls() const;
38
39 private :
40 LDAPUrlList m_urlList;
42};
43
44
45
46#endif //LDAP_SEARCH_REFERENCE_H
This class represents any type of LDAP- Message returned from the server.
Definition: LDAPMessage.h:23
For internal use only.
Definition: LDAPRequest.h:25
This class is used to represent Continuation References that were returned during a SEARCH-Operation.
Definition: LDAPSearchReference.h:21
~LDAPSearchReference()
The Destructor.
Definition: LDAPSearchReference.cpp:44
const LDAPUrlList & getUrls() const
Definition: LDAPSearchReference.cpp:49
This class is used to analyze and store LDAP-Urls as returned by a LDAP-Server as Referrals and Searc...
Definition: LDAPUrl.h:22
This container class is used to store multiple LDAPUrl-objects.
Definition: LDAPUrlList.h:16