HttpSession.h
Go to the documentation of this file.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 #ifndef HTTP_SESSION_H
00054 #define HTTP_SESSION_H
00055
00056 #include <memory>
00057 #include <string>
00058 #include <vector>
00059 #include <servlet/ServletContext.h>
00060 #include <boost/shared_ptr.hpp>
00061
00062 namespace servlet {
00063
00118 class HttpSession {
00119 public:
00120 virtual ~HttpSession()
00121 { }
00122
00137 virtual long getCreationTime() const=0;
00138
00152 virtual std::string getId() const=0;
00153
00174 virtual long getLastAccessedTime() const=0;
00175
00182 virtual const ServletContext& getServletContext() const=0;
00183
00194 virtual void setMaxInactiveInterval(int interval)=0;
00195
00213 virtual int getMaxInactiveInterval() const=0;
00214
00228 virtual boost::shared_ptr<void> getAttribute(const std::string& name)=0;
00229 template <typename T>
00230 T getAttribute(const std::string& name);
00231
00246 virtual std::auto_ptr< std::vector<std::string> > getAttributeNames() const=0;
00247
00277 virtual void setAttribute(const std::string& name, boost::shared_ptr<void> value)=0;
00278 template <typename T>
00279 void setAttribute(const std::string& name, boost::shared_ptr<T> value)
00280 {
00281 setAttribute(name, static_cast<boost::shared_ptr<void> >(value));
00282 }
00283 template <typename T>
00284 void setAttribute(const std::string& name, const T& value);
00285
00296 virtual bool hasAttribute(const std::string& name) const = 0;
00297
00319 virtual void removeAttribute(const std::string& name)=0;
00320
00330 virtual void invalidate()=0;
00331
00348 virtual bool isNew() const=0;
00349 };
00350 template<typename T>
00351 T HttpSession::getAttribute(const std::string& name) {
00352 const boost::shared_ptr<void> value = getAttribute(name);
00353 if(!value)
00354 return T();
00355 return *boost::static_pointer_cast<T>(value);
00356 }
00357 template<typename T>
00358 void HttpSession::setAttribute(const std::string& name, const T& value) {
00359 setAttribute(name,boost::shared_ptr<void>(new T(value)));
00360 }
00361
00362 }
00363
00364 #endif