00001 /* ${copyright}$ */ 00002 /* $Id: IpNetworkTransferRsp.H 958 2008-12-11 14:36:22Z eduardo $ */ 00007 #ifndef __IPNETWORKTRANSFERRSP_H__ 00008 #define __IPNETWORKTRANSFERRSP_H__ 00009 00010 #include <string> 00011 00012 #include "libepp_nicbr.H" 00013 00014 #include "Response.H" 00015 00016 using std::string; 00017 00018 LIBEPP_NICBR_NS_BEGIN 00019 00021 class IpNetworkTransferRsp : public Response 00022 { 00023 public: 00025 IpNetworkTransferRsp(bool reset = true) : Response(false) 00026 { 00027 if (reset) { 00028 this->reset(); 00029 } 00030 } 00031 00033 00036 void set_roid(const string &roid) 00037 { 00038 _roid = roid; 00039 } 00040 00042 00045 string get_roid() const 00046 { 00047 return _roid; 00048 } 00049 00051 00054 void set_trStatus(const string &trStatus) 00055 { 00056 _trStatus = trStatus; 00057 } 00058 00060 00063 string get_trStatus() const 00064 { 00065 return _trStatus; 00066 } 00067 00069 00072 void set_reId(const string &reId) 00073 { 00074 _reId = reId; 00075 } 00076 00078 00081 string get_reId() const 00082 { 00083 return _reId; 00084 } 00085 00087 00090 void set_reDate(const string &reDate) 00091 { 00092 _reDate = reDate; 00093 } 00094 00096 00099 string get_reDate() const 00100 { 00101 return _reDate; 00102 } 00103 00105 00109 void set_acId(const string &acId) 00110 { 00111 _acId = acId; 00112 } 00113 00115 00118 string get_acId() const 00119 { 00120 return _acId; 00121 } 00122 00124 00127 void set_acDate(const string &acDate) 00128 { 00129 _acDate = acDate; 00130 } 00131 00133 00136 string get_acDate() const 00137 { 00138 return _acDate; 00139 } 00140 00141 void reset() 00142 { 00143 Response::reset(); 00144 _roid = ""; 00145 _trStatus = ""; 00146 _reId = ""; 00147 _reDate = ""; 00148 _acId = ""; 00149 _acDate = ""; 00150 } 00151 00152 protected: 00154 string _roid; 00155 00157 string _trStatus; 00158 00160 string _reId; 00161 00163 string _reDate; 00164 00166 string _acId; 00167 00169 string _acDate; 00170 }; 00171 00172 LIBEPP_NICBR_NS_END 00173 #endif // __IPNETWORKTRANSFERRSP_H__