#include "orbsvcs/SSLIOP/SSLIOP_CredentialsAcquirerFactory.h"
#include "orbsvcs/SSLIOP/SSLIOP_CredentialsAcquirer.h"
Include dependency graph for SSLIOP_CredentialsAcquirerFactory.cpp:
Go to the source code of this file.
Functions | |
ACE_RCSID (SSLIOP, SSLIOP_CredentialsAcquirerFactory,"$Id:SSLIOP_CredentialsAcquirerFactory.cpp 76589 2007-01-25 18:04:11Z elliott_c $") TAO_BEGIN_VERSIONED_NAMESPACE_DECL SecurityLevel3 |
|
Definition at line 7 of file SSLIOP_CredentialsAcquirerFactory.cpp. References ACE_NEW_THROW_EX, and TAO_BEGIN_VERSIONED_NAMESPACE_DECL.
00009 : SSLIOP_CredentialsAcquirerFactory.cpp 76589 2007-01-25 18:04:11Z elliott_c $") 00010 00011 00012 TAO_BEGIN_VERSIONED_NAMESPACE_DECL 00013 00014 SecurityLevel3::CredentialsAcquirer_ptr 00015 TAO::SSLIOP::CredentialsAcquirerFactory::make ( 00016 TAO::SL3::CredentialsCurator_ptr curator, 00017 const CORBA::Any & acquisition_arguments) 00018 { 00019 SecurityLevel3::CredentialsAcquirer_ptr ca; 00020 ACE_NEW_THROW_EX (ca, 00021 TAO::SSLIOP::CredentialsAcquirer (curator, 00022 acquisition_arguments), 00023 CORBA::NO_MEMORY ()); 00024 00025 return ca; 00026 } |