libepp_nicbr
IpNetworkCreate.H
Go to the documentation of this file.
1 /* ${copyright}$ */
2 /* $Id: IpNetworkCreate.H 1086 2010-12-10 13:07:28Z eduardo $ */
7 #ifndef __IPNETWORKCREATE_H__
8 #define __IPNETWORKCREATE_H__
9 
10 #include "libepp_nicbr.H"
11 
12 #include "Action.H"
13 #include "IpNetworkCreateCmd.H"
14 #include "IpNetworkCreateRsp.H"
15 
16 using std::auto_ptr;
17 
18 LIBEPP_NICBR_NS_BEGIN
19 
21 class IpNetworkCreate : public Action
22 {
23 public:
25  IpNetworkCreate(const ActionType type = IP_NETWORK_CREATE) : Action(type)
26  {
27  if (type == IP_NETWORK_CREATE) {
28  _command = auto_ptr<IpNetworkCreateCmd>(new IpNetworkCreateCmd());
29  _response = auto_ptr<IpNetworkCreateRsp>(new IpNetworkCreateRsp());
30  }
31  }
32 
34 
37  void set_xml_template(const string &xml_template);
38 
40 
44  void set_response(const string &xml_payload, DomParser *parser)
45  {
46  get_response()->reset();
47  parser->parse_ipnetwork_create_rsp(xml_payload, get_response());
48  }
49 
51 
55  {
56  return (IpNetworkCreateCmd*) _command.get();
57  }
58 
60 
64  {
65  return (IpNetworkCreateRsp*) _response.get();
66  }
67 };
68 
69 LIBEPP_NICBR_NS_END
70 #endif // __IPNETWORKCREATE_H__
void set_response(const string &xml_payload, DomParser *parser)
Pure virtual method to set response from a XML document.
Definition: IpNetworkCreate.H:44
Project defines.
EPP IpNetworkCreateRsp Class.
IpNetworkCreateCmd * get_command()
Returns raw pointer to the command.
Definition: IpNetworkCreate.H:54
EPP Action Class.
EPP DomParser Class.
Definition: DomParser.H:62
EPP Action Class.
Definition: Action.H:24
IpNetworkCreate(const ActionType type=IP_NETWORK_CREATE)
Constructor.
Definition: IpNetworkCreate.H:25
auto_ptr< Response > _response
Generic response.
Definition: Action.H:79
void set_xml_template(const string &xml_template)
Sets XML template.
EPP IpNetworkCreateCmd Class.
Definition: IpNetworkCreateCmd.H:28
auto_ptr< Command > _command
Generic command.
Definition: Action.H:76
ActionType
Action Types.
Definition: CommonData.H:23
IpNetworkCreateRsp * get_response()
Returns raw pointer to the response.
Definition: IpNetworkCreate.H:63
EPP IpNetworkCreateCmd Class.
EPP IpNetworkCreateRsp Class.
Definition: IpNetworkCreateRsp.H:21
EPP IpNetworkCreate Class.
Definition: IpNetworkCreate.H:21