3 * Copyright 2000-2013 The OpenLDAP Foundation, All Rights Reserved.
4 * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
9 #include "LDAPRebindAuth.h"
14 LDAPRebindAuth::LDAPRebindAuth(const string& dn, const string& pwd){
15 DEBUG(LDAP_DEBUG_CONSTRUCT,"LDAPRebindAuth::LDAPRebindAuth()" << endl);
16 DEBUG(LDAP_DEBUG_CONSTRUCT | LDAP_DEBUG_PARAMETER," dn:" << dn << endl
17 << " pwd:" << pwd << endl);
22 LDAPRebindAuth::LDAPRebindAuth(const LDAPRebindAuth& lra){
23 DEBUG(LDAP_DEBUG_CONSTRUCT,"LDAPRebindAuth::LDAPRebindAuth(&)" << endl);
25 m_password=lra.m_password;
28 LDAPRebindAuth::~LDAPRebindAuth(){
29 DEBUG(LDAP_DEBUG_DESTROY,"LDAPRebindAuth::~LDAPRebindAuth()" << endl);
32 const string& LDAPRebindAuth::getDN() const{
33 DEBUG(LDAP_DEBUG_TRACE,"LDAPRebindAuth::getDN()" << endl);
37 const string& LDAPRebindAuth::getPassword() const{
38 DEBUG(LDAP_DEBUG_TRACE,"LDAPRebindAuth::getPassword()" << endl);