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

version 1.3, 2002/06/01 00:56:21 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 80 
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 120 
Line 134 
     PEG_METHOD_EXIT();     PEG_METHOD_EXIT();
 } }
  
   #ifdef PEGASUS_KERBEROS_AUTHENTICATION
   void   AuthenticationInfoRep::setSecurityAssociation()
   {
       PEG_METHOD_ENTER(
           TRC_AUTHENTICATION, "AuthenticationInfoRep::setSecurityAssociation");
   
       if ( !_securityAssoc.get() )
       {
           _securityAssoc = AutoPtr<CIMKerberosSecurityAssociation>(new
                                    CIMKerberosSecurityAssociation);
       }
   
       PEG_METHOD_EXIT();
   }
   #endif
   
   
 PEGASUS_NAMESPACE_END PEGASUS_NAMESPACE_END


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

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2