libepp_nicbr
DefRegTransfer.H
Go to the documentation of this file.
1 /* ${copyright}$ */
2 /* $Id$ */
7 #ifndef __DEF_REG_TRANSFER_H__
8 #define __DEF_REG_TRANSFER_H__
9 
10 #include <memory>
11 
12 #include "libepp_nicbr.H"
13 
14 #include "Action.H"
15 #include "DefRegTransferCmd.H"
16 #include "DefRegTransferRsp.H"
17 
18 LIBEPP_NICBR_NS_BEGIN
19 
21 class DefRegTransfer : public Action
22 {
23 public:
24 
26  DefRegTransfer(const ActionType type = DEF_REG_TRANSFER) : Action(type)
27  {
28  if (type == DEF_REG_TRANSFER) {
29  _command = auto_ptr<DefRegTransferCmd>(new DefRegTransferCmd());
30  _response = auto_ptr<DefRegTransferRsp>(new DefRegTransferRsp());
31  }
32  }
33 
35 
38  void set_xml_template(const string &xml_template);
39 
41 
45  void set_response(const string &xml_payload, DomParser *parser)
46  {
47  get_response()->reset();
48  parser->parse_def_reg_transfer_rsp(xml_payload, get_response());
49  }
50 
52 
56 
58 
62 };
63 
64 LIBEPP_NICBR_NS_END
65 
66 #endif // __DEF_REG_TRANSFER_H__
DefRegTransferCmd * get_command()
Returns raw pointer to the command.
Definition: DefRegTransfer.H:55
EPP DefRegTransferRsp Class.
Definition: DefRegTransferRsp.H:24
Project defines.
void reset()
Resets object attributes.
Definition: DefRegTransferRsp.H:134
void set_xml_template(const string &xml_template)
Sets XML template.
EPP DefRegTransferCmd Class.
DefRegTransferRsp * get_response()
Returns raw pointer to the response.
Definition: DefRegTransfer.H:61
EPP Action Class.
EPP DomParser Class.
Definition: DomParser.H:62
EPP Action Class.
Definition: Action.H:24
void set_response(const string &xml_payload, DomParser *parser)
Pure virtual method to set response from a XML document.
Definition: DefRegTransfer.H:45
DefRegTransfer(const ActionType type=DEF_REG_TRANSFER)
Constructor.
Definition: DefRegTransfer.H:26
EPP DefRegTransfer Class.
Definition: DefRegTransfer.H:21
auto_ptr< Response > _response
Generic response.
Definition: Action.H:79
void parse_def_reg_transfer_rsp(const string &xml_payload, DefRegTransferRsp *rsp)
Parse the response to a defensive registration transfer command.
auto_ptr< Command > _command
Generic command.
Definition: Action.H:76
ActionType
Action Types.
Definition: CommonData.H:23
EPP DefRegTransferCmd Class.
Definition: DefRegTransferCmd.H:23