(file) Return to AuthenticationInfoRep.cpp CVS log (file) (dir) Up to [Pegasus] / pegasus / src / Pegasus / Common

Diff for /pegasus/src/Pegasus/Common/AuthenticationInfoRep.cpp between version 1.17 and 1.23.2.1

version 1.17, 2006/01/30 16:16:46 version 1.23.2.1, 2007/04/30 22:55:38
Line 29 
Line 29 
 // //
 //============================================================================== //==============================================================================
 // //
 // Author:  Nag Boranna, Hewlett-Packard Company(nagaraja_boranna@hp.com)  
 //  
 // Modified By: Jair Santos, Hewlett-Packard Company (jair.santos@hp.com)  
 //              Amit K Arora, IBM (amita@in.ibm.com) for PEP-101  
 //              Heather Sterling, IBM (hsterl@us.ibm.com)  
 //  
 //%///////////////////////////////////////////////////////////////////////////// //%/////////////////////////////////////////////////////////////////////////////
  
 #include <Pegasus/Common/Config.h> #include <Pegasus/Common/Config.h>
Line 52 
Line 46 
     :     :
     _authUser(String::EMPTY),     _authUser(String::EMPTY),
     _authPassword(String::EMPTY),     _authPassword(String::EMPTY),
     _authChallenge(String::EMPTY),      _localAuthSecret(String::EMPTY),
     _authSecret(String::EMPTY),  
     _privileged(false),  
     _authType(String::EMPTY),     _authType(String::EMPTY),
     _authStatus(NEW_REQUEST),      _connectionAuthenticated(false),
     _exportConnection(false)      _wasRemotePrivilegedUserAccessChecked(false)
 { {
     PEG_METHOD_ENTER(     PEG_METHOD_ENTER(
         TRC_AUTHENTICATION, "AuthenticationInfoRep::AuthenticationInfoRep");         TRC_AUTHENTICATION, "AuthenticationInfoRep::AuthenticationInfoRep");
Line 74 
Line 66 
     PEG_METHOD_EXIT();     PEG_METHOD_EXIT();
 } }
  
 void   AuthenticationInfoRep::setAuthStatus(AuthStatus status)  void   AuthenticationInfoRep::setConnectionAuthenticated(
       Boolean connectionAuthenticated)
 { {
     PEG_METHOD_ENTER(     PEG_METHOD_ENTER(
         TRC_AUTHENTICATION, "AuthenticationInfoRep::setAuthStatus");          TRC_AUTHENTICATION, "AuthenticationInfoRep::setConnectionAuthenticated");
  
     _authStatus = status;      _connectionAuthenticated = connectionAuthenticated;
  
     PEG_METHOD_EXIT();     PEG_METHOD_EXIT();
 } }
Line 104 
Line 97 
     PEG_METHOD_EXIT();     PEG_METHOD_EXIT();
 } }
  
 void   AuthenticationInfoRep::setAuthChallenge(const String& challenge)  void AuthenticationInfoRep::setLocalAuthFilePath(const String& filePath)
 {  
     PEG_METHOD_ENTER(  
         TRC_AUTHENTICATION, "AuthenticationInfoRep::setAuthChallenge");  
   
     _authChallenge = challenge;  
   
     PEG_METHOD_EXIT();  
 }  
   
 void   AuthenticationInfoRep::setAuthSecret(const String& secret)  
 { {
     PEG_METHOD_ENTER(     PEG_METHOD_ENTER(
         TRC_AUTHENTICATION, "AuthenticationInfoRep::setAuthSecret");          TRC_AUTHENTICATION, "AuthenticationInfoRep::setLocalAuthFilePath");
  
     _authSecret = secret;      _localAuthFilePath = filePath;
  
     PEG_METHOD_EXIT();     PEG_METHOD_EXIT();
 } }
  
 void   AuthenticationInfoRep::setPrivileged(Boolean privileged)  void   AuthenticationInfoRep::setLocalAuthSecret(const String& secret)
 { {
     PEG_METHOD_ENTER(     PEG_METHOD_ENTER(
         TRC_AUTHENTICATION, "AuthenticationInfoRep::setPrivileged");          TRC_AUTHENTICATION, "AuthenticationInfoRep::setLocalAuthSecret");
  
     _privileged = privileged;      _localAuthSecret = secret;
  
     PEG_METHOD_EXIT();     PEG_METHOD_EXIT();
 } }
Line 159 
Line 142 
 } }
 #endif #endif
  
 void   AuthenticationInfoRep::setExportConnection(Boolean exportConnection)  void AuthenticationInfoRep::setClientCertificateChain(
 {      Array<SSLCertificateInfo*> clientCertificate)
     PEG_METHOD_ENTER(TRC_AUTHENTICATION,  
         "AuthenticationInfoRep::setExportConnection");  
   
     _exportConnection = exportConnection;  
   
     PEG_METHOD_EXIT();  
 }  
   
 //PEP187  
 void AuthenticationInfoRep::setClientCertificateChain(Array<SSLCertificateInfo*> clientCertificate)  
 { {
     PEG_METHOD_ENTER(TRC_AUTHENTICATION,     PEG_METHOD_ENTER(TRC_AUTHENTICATION,
         "AuthenticationInfoRep::setClientCertificateChain");         "AuthenticationInfoRep::setClientCertificateChain");


Legend:
Removed from v.1.17  
changed lines
  Added in v.1.23.2.1

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2