00001
00002
00003
00004
00005
00006
00007 #ifndef COH_DEFAULT_IDENTITY_ASSERTER_HPP
00008 #define COH_DEFAULT_IDENTITY_ASSERTER_HPP
00009
00010 #include "coherence/lang.ns"
00011
00012 #include "coherence/net/Service.hpp"
00013 #include "coherence/security/auth/Subject.hpp"
00014 #include "coherence/security/IdentityAsserter.hpp"
00015
00016 COH_OPEN_NAMESPACE2(coherence,security)
00017
00018 using coherence::security::auth::Subject;
00019 using coherence::net::Service;
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029 class DefaultIdentityAsserter
00030 : public class_spec<DefaultIdentityAsserter,
00031 extends<Object>,
00032 implements<IdentityAsserter> >
00033 {
00034 friend class factory<DefaultIdentityAsserter>;
00035
00036
00037
00038 public:
00039
00040
00041
00042 virtual Subject::View assertIdentity(Object::View vToken,
00043 Service::View vService) const;
00044
00045
00046
00047
00048 public:
00049
00050
00051
00052 static DefaultIdentityAsserter::Handle getInstance();
00053 };
00054
00055 COH_CLOSE_NAMESPACE2
00056
00057 #endif // COH_DEFAULT_IDENTITY_ASSERTER_HPP