00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045
00046
00047
00048
00049
00050
00051
00052
00053
00054
00055
00056 #ifndef SECURITYMANAGER_HPP
00057 #define SECURITYMANAGER_HPP
00058
00059 #include <xercesc/util/XercesDefs.hpp>
00060
00061 XERCES_CPP_NAMESPACE_BEGIN
00062
00085 class SecurityManager
00086 {
00087 public:
00088
00089 enum { ENTITY_EXPANSION_LIMIT = 50000};
00090
00094 SecurityManager()
00095 : fEntityExpansionLimit(ENTITY_EXPANSION_LIMIT)
00096 {
00097 }
00098
00100 virtual ~SecurityManager(){};
00102
00117 virtual void setEntityExpansionLimit(unsigned int newLimit)
00118 {
00119 fEntityExpansionLimit = newLimit;
00120 }
00121
00129 virtual unsigned int getEntityExpansionLimit() const
00130 {
00131 return fEntityExpansionLimit;
00132 }
00134
00135 protected:
00136 unsigned int fEntityExpansionLimit;
00137
00138 private:
00139
00140
00141
00142 SecurityManager(const SecurityManager&);
00143
00145 SecurityManager& operator=(const SecurityManager&);
00146 };
00147
00148 XERCES_CPP_NAMESPACE_END
00149
00150 #endif