Development of NETCONF RPCs for tr-069 adapter to
[oam/tr069-adapter.git] / acs / cpe / src / main / java / org / commscope / tr069adapter / acs / cpe / rpc / Upload.java
1 /*
2  * ============LICENSE_START========================================================================
3  * ONAP : tr-069-adapter
4  * =================================================================================================
5  * Copyright (C) 2020 CommScope Inc Intellectual Property.
6  * =================================================================================================
7  * This tr-069-adapter software file is distributed by CommScope Inc under the Apache License,
8  * Version 2.0 (the "License"); you may not use this file except in compliance with the License. You
9  * may obtain a copy of the License at
10  *
11  * http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
14  * either express or implied. See the License for the specific language governing permissions and
15  * limitations under the License.
16  * ===============LICENSE_END=======================================================================
17  */
18
19 package org.commscope.tr069adapter.acs.cpe.rpc;
20
21 import javax.xml.soap.SOAPBodyElement;
22 import javax.xml.soap.SOAPException;
23 import javax.xml.soap.SOAPFactory;
24
25 import org.commscope.tr069adapter.acs.cpe.TR069RPC;
26
27 public class Upload extends TR069RPC {
28
29   private static final long serialVersionUID = -3096728959585163928L;
30
31   /** Creates a new instance of Upload */
32   public Upload() {
33     name = "Upload";
34     username = "";
35     password = "";
36     delaySeconds = 0;
37     fileType = FT_CONFIG;
38     url = "http://localhost:8080/acs-war/upload/tst.cfg";
39     commandKey = "default.command.key";
40   }
41
42   protected void createBody(SOAPBodyElement body, SOAPFactory spf) throws SOAPException {
43     body.addChildElement(COMMAND_KEY).setValue(commandKey);
44     body.addChildElement("FileType").setValue(fileType);
45
46     body.addChildElement("URL").setValue(url);
47     body.addChildElement("Username").setValue(username);
48     body.addChildElement("Password").setValue(password);
49     body.addChildElement("DelaySeconds").setValue(String.valueOf(delaySeconds));
50   }
51
52   protected void parseBody(SOAPBodyElement body, SOAPFactory f) throws SOAPException {
53     logger.isDebugEnabled();
54   }
55
56   private String commandKey;
57   private String fileType;
58   private String url;
59   private String username;
60   private String password;
61   private int delaySeconds;
62   public static final String FT_CONFIG = "1 Vendor Configuration File";
63   public static final String FT_LOG = "2 Vendor Log File";
64 }