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

F79659-03

coherence/security/auth/Subject.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_SUBJECT_HPP
00008 #define COH_SUBJECT_HPP
00009 
00010 #include "coherence/lang.ns"
00011 
00012 #include "coherence/util/Set.hpp"
00013 #include "coherence/security/RunAsBlock.hpp"
00014 #include "coherence/security/Principal.hpp"
00015 
00016 COH_OPEN_NAMESPACE3(coherence,security,auth)
00017 
00018 using coherence::util::Set;
00019 
00020 /**
00021 * A Subject represents a grouping of related information for a single entity,
00022 * such as a person.
00023 *
00024 * @see coherence::security::Principal
00025 *
00026 * @author jh 2007.12.20
00027 */
00028 class COH_EXPORT Subject
00029     : public interface_spec<Subject>
00030     {
00031     // ----- Subject interface ----------------------------------------------
00032 
00033     public:
00034         /**
00035         * Return the set of Principals associated with the Subject.
00036         *
00037         * @return the set of Principals associated with the Subject
00038         */
00039         virtual Set::View getPrincipals() const = 0;
00040     };
00041 
00042 COH_CLOSE_NAMESPACE3
00043 
00044 #endif // COH_SUBJECT_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.