123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- #ifndef _AE_CLOSE_SESSION_REQUEST_H
- #define _AE_CLOSE_SESSION_REQUEST_H
- #include <IAERequest.h>
- #include <stdint.h>
- namespace aesm
- {
- namespace message
- {
- class Request_CloseSessionRequest;
- };
- };
- class AECloseSessionRequest : public IAERequest
- {
- public:
- AECloseSessionRequest(const aesm::message::Request_CloseSessionRequest& request);
- AECloseSessionRequest(uint32_t sessionId, uint32_t timeout);
- AECloseSessionRequest(const AECloseSessionRequest& other);
- ~AECloseSessionRequest();
- AEMessage* serialize();
-
- AECloseSessionRequest& operator=(const AECloseSessionRequest& other);
-
- bool check();
-
- IAEResponse* execute(IAESMLogic* aesmLogic);
-
- virtual RequestClass getRequestClass();
- protected:
- aesm::message::Request_CloseSessionRequest* m_request;
- };
- #endif
|