00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013 #ifndef TAO_SL3_SECURITY_CURRENT_IMPL_H
00014 #define TAO_SL3_SECURITY_CURRENT_IMPL_H
00015
00016 #include "ace/pre.h"
00017
00018 #include "ace/config-all.h"
00019
00020 #if !defined (ACE_LACKS_PRAGMA_ONCE)
00021 # pragma once
00022 #endif
00023
00024 #include "orbsvcs/Security/security_export.h"
00025 #include "orbsvcs/SecurityLevel3C.h"
00026
00027
00028 TAO_BEGIN_VERSIONED_NAMESPACE_DECL
00029
00030 namespace TAO
00031 {
00032 namespace SL3
00033 {
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045
00046
00047 class TAO_Security_Export SecurityCurrent_Impl
00048 {
00049 public:
00050
00051
00052 virtual ~SecurityCurrent_Impl (void);
00053
00054
00055
00056
00057
00058
00059
00060
00061
00062
00063 virtual SecurityLevel3::ClientCredentials_ptr client_credentials (
00064 ACE_ENV_SINGLE_ARG_DECL)
00065 ACE_THROW_SPEC ((CORBA::SystemException)) = 0;
00066
00067
00068 virtual CORBA::Boolean request_is_local (
00069 ACE_ENV_SINGLE_ARG_DECL)
00070 ACE_THROW_SPEC ((CORBA::SystemException)) = 0;
00071
00072
00073
00074 virtual CORBA::ULong tag (void) const = 0;
00075
00076 };
00077
00078 }
00079 }
00080
00081 TAO_END_VERSIONED_NAMESPACE_DECL
00082
00083 #include "ace/post.h"
00084
00085 #endif