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

F79659-03

coherence/security/DefaultIdentityTransformer.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_TRANSFORMER_HPP
00008 #define COH_DEFAULT_IDENTITY_TRANSFORMER_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/IdentityTransformer.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 IdentityTransformer interface, which
00024 * simply returns the Subject that is passed to it.
00025 *
00026 * @author dag 2009.12.21
00027 */
00028 class DefaultIdentityTransformer
00029     : public class_spec<DefaultIdentityTransformer,
00030         extends<Object>,
00031         implements<IdentityTransformer> >
00032     {
00033     friend class factory<DefaultIdentityTransformer>;
00034 
00035     // ----- IdentityTransformer interface ----------------------------------
00036 
00037     public:
00038         /**
00039         * {@inheritDoc}
00040         */
00041         virtual Object::View transformIdentity(Subject::View vSubject,
00042                 Service::View vService) const;
00043 
00044 
00045     // ----- constants ------------------------------------------------------
00046 
00047     public:
00048         /**
00049         * Get the singleton instance of the DefaultIdentityTransformer.
00050         */
00051         static DefaultIdentityTransformer::Handle getInstance();
00052    };
00053 
00054 COH_CLOSE_NAMESPACE2
00055 
00056 #endif // COH_DEFAULT_IDENTITY_TRANSFORMER_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.