00001
00002
00003
00004
00005
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
00028
00029
00030
00031
00032
00033
00034 class COH_EXPORT OperationalContext
00035 : public interface_spec<OperationalContext>
00036 {
00037
00038
00039 public:
00040
00041
00042
00043
00044
00045 virtual int32_t getEdition() const = 0;
00046
00047
00048
00049
00050
00051
00052 virtual String::View getEditionName() const = 0;
00053
00054
00055
00056
00057
00058
00059 virtual Member::View getLocalMember() const = 0;
00060
00061
00062
00063
00064
00065
00066
00067 virtual Map::View getFilterMap() const = 0;
00068
00069
00070
00071
00072
00073
00074
00075
00076
00077 virtual Map::View getSerializerMap() const = 0;
00078
00079
00080
00081
00082
00083
00084
00085
00086
00087 virtual Map::View getAddressProviderMap() const = 0;
00088
00089
00090
00091
00092
00093
00094
00095 virtual IdentityAsserter::View getIdentityAsserter() const = 0;
00096
00097
00098
00099
00100
00101
00102
00103 virtual IdentityTransformer::View getIdentityTransformer() const = 0;
00104
00105
00106
00107
00108
00109
00110 virtual bool isSubjectScopingEnabled() const = 0;
00111
00112
00113
00114
00115
00116
00117 virtual int32_t getLogLevel() const = 0;
00118
00119
00120
00121
00122
00123
00124
00125
00126 virtual int32_t getLogCharacterLimit() const = 0;
00127
00128
00129
00130
00131
00132
00133 virtual String::View getLogMessageFormat() const = 0;
00134
00135
00136
00137
00138
00139
00140 virtual String::View getLogDestination() const = 0;
00141
00142
00143
00144
00145
00146
00147
00148
00149 virtual int32_t getDiscoveryTimeToLive() const = 0;
00150 };
00151
00152 COH_CLOSE_NAMESPACE2
00153
00154 #endif // COH_OPERATIONAL_CONTEXT_HPP