00001
00002
00003
00004
00005
00006
00007 #ifndef COH_DEFAULT_OPERATIONAL_CONTEXT_HPP
00008 #define COH_DEFAULT_OPERATIONAL_CONTEXT_HPP
00009
00010 #include "coherence/lang.ns"
00011
00012 #include "coherence/net/Member.hpp"
00013 #include "coherence/net/OperationalContext.hpp"
00014 #include "coherence/run/xml/XmlDocument.hpp"
00015 #include "coherence/run/xml/XmlElement.hpp"
00016 #include "coherence/security/IdentityAsserter.hpp"
00017 #include "coherence/security/IdentityTransformer.hpp"
00018 #include "coherence/util/Map.hpp"
00019
00020 COH_OPEN_NAMESPACE2(coherence,net)
00021
00022 using coherence::run::xml::XmlDocument;
00023 using coherence::run::xml::XmlElement;
00024 using coherence::security::IdentityAsserter;
00025 using coherence::security::IdentityTransformer;
00026 using coherence::util::Map;
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038 class COH_EXPORT DefaultOperationalContext
00039 : public class_spec<DefaultOperationalContext,
00040 extends<Object>,
00041 implements<OperationalContext> >
00042 {
00043 friend class factory<DefaultOperationalContext>;
00044
00045
00046
00047 protected:
00048
00049
00050
00051
00052
00053 DefaultOperationalContext(XmlElement::View vXmlCoherence = NULL);
00054
00055
00056
00057
00058 public:
00059
00060
00061
00062 typedef enum
00063 {
00064 edition_dc = 0,
00065 edition_rtc = 1
00066 } ProductEdition;
00067
00068
00069
00070
00071 public:
00072
00073
00074
00075
00076
00077
00078 static XmlDocument::Handle getDefaultOperationalConfig();
00079
00080
00081
00082
00083 public:
00084
00085
00086
00087 virtual int32_t getEdition() const;
00088
00089
00090
00091
00092 virtual String::View getEditionName() const;
00093
00094
00095
00096
00097 virtual Member::View getLocalMember() const;
00098
00099
00100
00101
00102 virtual Map::View getFilterMap() const;
00103
00104
00105
00106
00107 virtual Map::View getSerializerMap() const;
00108
00109
00110
00111
00112 virtual Map::View getAddressProviderMap() const;
00113
00114
00115
00116
00117 virtual IdentityAsserter::View getIdentityAsserter() const;
00118
00119
00120
00121
00122 virtual IdentityTransformer::View getIdentityTransformer() const;
00123
00124
00125
00126
00127 virtual bool isSubjectScopingEnabled() const;
00128
00129
00130
00131
00132 virtual int32_t getLogLevel() const;
00133
00134
00135
00136
00137 virtual int32_t getLogCharacterLimit() const;
00138
00139
00140
00141
00142 virtual String::View getLogMessageFormat() const;
00143
00144
00145
00146
00147 virtual String::View getLogDestination() const;
00148
00149
00150
00151
00152 virtual int32_t getDiscoveryTimeToLive() const;
00153
00154
00155
00156
00157 protected:
00158
00159
00160
00161 int32_t m_nEdition;
00162
00163
00164
00165
00166 FinalView<String> f_vsEdition;
00167
00168
00169
00170
00171
00172
00173
00174 FinalView<Map> f_vFilterMap;
00175
00176
00177
00178
00179
00180
00181
00182 FinalView<Map> f_vSerializerMap;
00183
00184
00185
00186
00187
00188
00189
00190 FinalView<Map> f_vAddressProviderMap;
00191
00192
00193
00194
00195 FinalView<Member> f_vMemberLocal;
00196
00197
00198
00199
00200
00201 FinalView<IdentityAsserter> f_vAsserter;
00202
00203
00204
00205
00206
00207 FinalView<IdentityTransformer> f_vTransformer;
00208
00209
00210
00211
00212 bool m_fSubjectScoped;
00213
00214
00215
00216
00217 int32_t m_nLogLevel;
00218
00219
00220
00221
00222
00223 int32_t m_nLogCharacterLimit;
00224
00225
00226
00227
00228 FinalView<String> f_vsLogMessageFormat;
00229
00230
00231
00232
00233 FinalView<String> f_vsLogDestination;
00234
00235
00236
00237
00238 int32_t m_nTtlDiscovery;
00239 };
00240
00241 COH_CLOSE_NAMESPACE2
00242
00243 #endif // COH_DEFAULT_OPERATIONAL_CONTEXT_HPP