C++ Client API Reference for Oracle Coherence
14c (14.1.2.0.0)

F79659-03

coherence/security/DefaultIdentityAsserter.hpp

00001 /*
00002  * Copyright (c) 2000, 2020, Oracle and/or its affiliates.
00003  *
00004  * Licensed under the Universal Permissive License v 1.0 as shown at
00005  * http://oss.oracle.com/licenses/upl.
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 * The default implementation of the IdentityAsserter interface.
00024 * <p>
00025 * The default implementation asserts that the token is a Subject.
00026 *
00027 * @author dag  2009.11.16
00028 */
00029 class DefaultIdentityAsserter
00030     : public class_spec<DefaultIdentityAsserter,
00031         extends<Object>,
00032         implements<IdentityAsserter> >
00033     {
00034     friend class factory<DefaultIdentityAsserter>;
00035 
00036     // ----- IdentityAsserter interface -------------------------------------
00037 
00038     public:
00039         /**
00040         * {@inheritDoc}
00041         */
00042         virtual Subject::View assertIdentity(Object::View vToken,
00043                 Service::View vService) const;
00044 
00045 
00046     // ----- constants ------------------------------------------------------
00047 
00048     public:
00049         /**
00050         * Get the singleton instance of the DefaultIdentityAsserter.
00051         */
00052         static DefaultIdentityAsserter::Handle getInstance();
00053     };
00054 
00055 COH_CLOSE_NAMESPACE2
00056 
00057 #endif // COH_DEFAULT_IDENTITY_ASSERTER_HPP
Copyright © 2000, 2025, Oracle and/or its affiliates. Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl.