Update wrt-plugins-common_0.3.53
[framework/web/wrt-plugins-common.git] / src / Commons / WrtAccess / WrtAccess.h
index 0c21374..574324f 100644 (file)
@@ -22,6 +22,8 @@
 #ifndef WRT_PLUGINS_WRT_ACCESS_H_
 #define WRT_PLUGINS_WRT_ACCESS_H_
 
+#include <string>
+
 #include <dpl/singleton.h>
 #include <Commons/TypesDeclaration.h>
 
@@ -37,11 +39,16 @@ public:
     bool checkAccessControl(const AceFunction &aceFunction) const;
 
 private:
+
+    typedef std::string SessionId;
+    SessionId GenerateSessionId();
+
     WrtAccess();
     virtual ~WrtAccess();
 
     bool m_initialized;
     int m_widgetId;
+    SessionId m_sessionId;
 
     friend class DPL::Singleton<WrtAccess>;
 };