(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.5 and 1.8

version 1.5, 2003/08/11 22:10:18 version 1.8, 2004/05/05 12:51:27
Line 1 
Line 1 
 //%/////////////////////////////////////////////////////////////////////////////  //%2003////////////////////////////////////////////////////////////////////////
 // //
 // Copyright (c) 2000, 2001, 2002 BMC Software, Hewlett-Packard Company, IBM,  // Copyright (c) 2000, 2001, 2002  BMC Software, Hewlett-Packard Development
 // The Open Group, Tivoli Systems  // Company, L. P., IBM Corp., The Open Group, Tivoli Systems.
   // Copyright (c) 2003 BMC Software; Hewlett-Packard Development Company, L. P.;
   // IBM Corp.; EMC Corporation, The Open Group.
 // //
 // Permission is hereby granted, free of charge, to any person obtaining a copy // Permission is hereby granted, free of charge, to any person obtaining a copy
 // of this software and associated documentation files (the "Software"), to // of this software and associated documentation files (the "Software"), to
Line 23 
Line 25 
 // //
 // Author:  Nag Boranna, Hewlett-Packard Company(nagaraja_boranna@hp.com) // Author:  Nag Boranna, Hewlett-Packard Company(nagaraja_boranna@hp.com)
 // //
 // Modified By:  // Modified By: Jair Santos, Hewlett-Packard Company (jair.santos@hp.com)
   //              Amit K Arora, IBM (amita@in.ibm.com) for PEP-101
 // //
 //%///////////////////////////////////////////////////////////////////////////// //%/////////////////////////////////////////////////////////////////////////////
  
Line 39 
Line 42 
 AuthenticationInfoRep::AuthenticationInfoRep(Boolean flag) AuthenticationInfoRep::AuthenticationInfoRep(Boolean flag)
     :     :
     _authUser(String::EMPTY),     _authUser(String::EMPTY),
       _authPassword(String::EMPTY),
     _authChallenge(String::EMPTY),     _authChallenge(String::EMPTY),
     _authSecret(String::EMPTY),     _authSecret(String::EMPTY),
     _privileged(false),     _privileged(false),
Line 48 
Line 52 
     PEG_METHOD_ENTER(     PEG_METHOD_ENTER(
         TRC_AUTHENTICATION, "AuthenticationInfoRep::AuthenticationInfoRep");         TRC_AUTHENTICATION, "AuthenticationInfoRep::AuthenticationInfoRep");
  
 #ifdef PEGASUS_KERBEROS_AUTHENTICATION  
     _securityAssoc = NULL;  
 #endif  
   
     PEG_METHOD_EXIT();     PEG_METHOD_EXIT();
 } }
  
Line 61 
Line 61 
     PEG_METHOD_ENTER(     PEG_METHOD_ENTER(
         TRC_AUTHENTICATION, "AuthenticationInfoRep::~AuthenticationInfoRep");         TRC_AUTHENTICATION, "AuthenticationInfoRep::~AuthenticationInfoRep");
  
 #ifdef PEGASUS_KERBEROS_AUTHENTICATION  
     if (_securityAssoc)  
     {  
         delete _securityAssoc;  
         _securityAssoc = 0;  
     }  
 #endif  
   
     PEG_METHOD_EXIT();     PEG_METHOD_EXIT();
 } }
  
Line 92 
Line 84 
     PEG_METHOD_EXIT();     PEG_METHOD_EXIT();
 } }
  
   void   AuthenticationInfoRep::setAuthenticatedPassword(const String& password)
   {
       PEG_METHOD_ENTER(
           TRC_AUTHENTICATION, "AuthenticationInfoRep::setAuthenticatedPassword");
   
       _authPassword = password;
   
       PEG_METHOD_EXIT();
   }
   
 void   AuthenticationInfoRep::setAuthChallenge(const String& challenge) void   AuthenticationInfoRep::setAuthChallenge(const String& challenge)
 { {
     PEG_METHOD_ENTER(     PEG_METHOD_ENTER(
Line 138 
Line 140 
     PEG_METHOD_ENTER(     PEG_METHOD_ENTER(
         TRC_AUTHENTICATION, "AuthenticationInfoRep::setSecurityAssociation");         TRC_AUTHENTICATION, "AuthenticationInfoRep::setSecurityAssociation");
  
     if ( !_securityAssoc )      if ( !_securityAssoc.get() )
     {     {
         _securityAssoc = new CIMKerberosSecurityAssociation;          _securityAssoc = AutoPtr<CIMKerberosSecurityAssociation>(new
                                    CIMKerberosSecurityAssociation);
     }     }
  
     PEG_METHOD_EXIT();     PEG_METHOD_EXIT();


Legend:
Removed from v.1.5  
changed lines
  Added in v.1.8

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2