00001 #include "orbsvcs/SSLIOP/SSLIOP_TargetCredentials.h" 00002 00003 00004 ACE_RCSID (SSLIOP, 00005 SSLIOP_TargetCredentials, 00006 "$Id: SSLIOP_TargetCredentials.cpp 77001 2007-02-12 07:54:49Z johnnyw $") 00007 00008 TAO_BEGIN_VERSIONED_NAMESPACE_DECL 00009 00010 TAO::SSLIOP::TargetCredentials::TargetCredentials (::X509 *cert, 00011 ::EVP_PKEY *evp) 00012 : SSLIOP_Credentials (cert, evp) 00013 { 00014 } 00015 00016 00017 SecurityLevel3::CredentialsType 00018 TAO::SSLIOP::TargetCredentials::creds_type (void) 00019 { 00020 return SecurityLevel3::CT_TargetCredentials; 00021 } 00022 00023 char * 00024 TAO::SSLIOP::TargetCredentials::context_id (void) 00025 { 00026 throw CORBA::NO_IMPLEMENT (); 00027 } 00028 00029 SecurityLevel3::Principal * 00030 TAO::SSLIOP::TargetCredentials::client_principal (void) 00031 { 00032 throw CORBA::NO_IMPLEMENT (); 00033 } 00034 00035 SecurityLevel3::StatementList * 00036 TAO::SSLIOP::TargetCredentials::client_supporting_statements () 00037 { 00038 throw CORBA::NO_IMPLEMENT (); 00039 } 00040 00041 SecurityLevel3::ResourceNameList * 00042 TAO::SSLIOP::TargetCredentials::client_restricted_resources () 00043 { 00044 throw CORBA::NO_IMPLEMENT (); 00045 } 00046 00047 SecurityLevel3::Principal * 00048 TAO::SSLIOP::TargetCredentials::target_principal (void) 00049 { 00050 throw CORBA::NO_IMPLEMENT (); 00051 } 00052 00053 SecurityLevel3::StatementList * 00054 TAO::SSLIOP::TargetCredentials::target_supporting_statements () 00055 { 00056 throw CORBA::NO_IMPLEMENT (); 00057 } 00058 00059 SecurityLevel3::ResourceNameList * 00060 TAO::SSLIOP::TargetCredentials::target_restricted_resources () 00061 { 00062 throw CORBA::NO_IMPLEMENT (); 00063 } 00064 00065 SecurityLevel3::OwnCredentials_ptr 00066 TAO::SSLIOP::TargetCredentials::parent_credentials (void) 00067 { 00068 throw CORBA::NO_IMPLEMENT (); 00069 } 00070 00071 CORBA::Boolean 00072 TAO::SSLIOP::TargetCredentials::client_authentication (void) 00073 { 00074 throw CORBA::NO_IMPLEMENT (); 00075 } 00076 00077 CORBA::Boolean 00078 TAO::SSLIOP::TargetCredentials::target_authentication (void) 00079 { 00080 throw CORBA::NO_IMPLEMENT (); 00081 } 00082 00083 CORBA::Boolean 00084 TAO::SSLIOP::TargetCredentials::confidentiality (void) 00085 { 00086 throw CORBA::NO_IMPLEMENT (); 00087 } 00088 00089 CORBA::Boolean 00090 TAO::SSLIOP::TargetCredentials::integrity (void) 00091 { 00092 throw CORBA::NO_IMPLEMENT (); 00093 } 00094 00095 CORBA::Boolean 00096 TAO::SSLIOP::TargetCredentials::target_embodied (void) 00097 { 00098 throw CORBA::NO_IMPLEMENT (); 00099 } 00100 00101 CORBA::Boolean 00102 TAO::SSLIOP::TargetCredentials::target_endorsed (void) 00103 { 00104 throw CORBA::NO_IMPLEMENT (); 00105 } 00106 00107 void 00108 TAO::SSLIOP::TargetCredentials::release (void) 00109 { 00110 throw CORBA::NO_IMPLEMENT (); 00111 } 00112 00113 TAO_END_VERSIONED_NAMESPACE_DECL