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

F79659-03

coherence/net/OperationalContext.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_OPERATIONAL_CONTEXT_HPP
00008 #define COH_OPERATIONAL_CONTEXT_HPP
00009 
00010 #include "coherence/lang.ns"
00011 
00012 #include "coherence/net/Member.hpp"
00013 #include "coherence/run/xml/XmlElement.hpp"
00014 #include "coherence/security/IdentityAsserter.hpp"
00015 #include "coherence/security/IdentityTransformer.hpp"
00016 #include "coherence/util/Map.hpp"
00017 
00018 COH_OPEN_NAMESPACE2(coherence,net)
00019 
00020 using coherence::run::xml::XmlElement;
00021 using coherence::security::IdentityAsserter;
00022 using coherence::security::IdentityTransformer;
00023 using coherence::util::Map;
00024 
00025 
00026 /**
00027 * OperationalContext is an interface for providing Oracle Coherence
00028 * operational configuration.
00029 *
00030 * @author phf  2010.10.28
00031 *
00032 * @since Coherence 3.7
00033 */
00034 class COH_EXPORT OperationalContext
00035     : public interface_spec<OperationalContext>
00036     {
00037     // ----- OperationalContext interface -----------------------------------
00038 
00039     public:
00040         /**
00041         * Get the product edition.
00042         *
00043         * @return the product edition
00044         */
00045         virtual int32_t getEdition() const = 0;
00046 
00047         /**
00048         * Get the product edition in a formatted string.
00049         *
00050         * @return the product edition in a formatted string
00051         */
00052         virtual String::View getEditionName() const = 0;
00053 
00054         /**
00055         * Return a Member object representing this process.
00056         *
00057         * @return the local Member
00058         */
00059         virtual Member::View getLocalMember() const = 0;
00060 
00061         /**
00062         * Return a Map of network filter factories.
00063         *
00064         * @return a Map of WrapperStreamFactory instances keyed by filter
00065         *         name
00066         */
00067         virtual Map::View getFilterMap() const = 0;
00068 
00069         /**
00070         * Return a Map of serializer factories.
00071         *
00072         * @return a Map of SerializerFactory instances keyed by serializer
00073         *         name
00074         *
00075         * @since Coherence 12.1.2
00076         */
00077         virtual Map::View getSerializerMap() const = 0;
00078 
00079         /**
00080         * Return a Map of address provider factories.
00081         *
00082         * @return a Map of AddressProviderFactory instances keyed by address
00083         *         provider name
00084         *
00085         * @since Coherence 12.1.2
00086         */
00087         virtual Map::View getAddressProviderMap() const = 0;
00088 
00089         /**
00090         * Return an IdentityAsserter that can be used to establish a user's
00091         * identity.
00092         *
00093         * @return the IdentityAsserter
00094         */
00095         virtual IdentityAsserter::View getIdentityAsserter() const = 0;
00096 
00097         /**
00098         * Return an IdentityTransformer that can be used to transform a
00099         * Subject into an identity assertion.
00100         *
00101         * @return the IdentityTransformer
00102         */
00103         virtual IdentityTransformer::View getIdentityTransformer() const = 0;
00104 
00105         /**
00106         * Indicates if Subject scoping is enabled.
00107         *
00108         * @return true if subject scoping is enabled
00109         */
00110         virtual bool isSubjectScopingEnabled() const = 0;
00111 
00112         /**
00113         * Return the logging severity level.
00114         *
00115         * @return the logging severity level
00116         */
00117         virtual int32_t getLogLevel() const = 0;
00118 
00119         /**
00120         * Return the maximum number of characters for a logger daemon to
00121         * queue before truncating.
00122         *
00123         * @return the maximum number of characters for a logger daemon
00124         *         to queue before truncating
00125         */
00126         virtual int32_t getLogCharacterLimit() const = 0;
00127 
00128         /**
00129         * Return the log message format.
00130         *
00131         * @return the log message format
00132         */
00133         virtual String::View getLogMessageFormat() const = 0;
00134 
00135         /**
00136         * Return the destination for log messages.
00137         *
00138         * @return the destination for log messages
00139         */
00140         virtual String::View getLogDestination() const = 0;
00141 
00142         /**
00143          * Return the TTL for multicast based discovery.
00144          *
00145          * @return the TTL
00146          *
00147          * @since 12.2.1
00148          */
00149         virtual int32_t getDiscoveryTimeToLive() const = 0;
00150     };
00151 
00152 COH_CLOSE_NAMESPACE2
00153 
00154 #endif // COH_OPERATIONAL_CONTEXT_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.