exchanging new version yang models on firmware upgrade
[oam/tr069-adapter.git] / acs / cpe / src / main / java / org / commscope / tr069adapter / acs / cpe / rpc / GetParameterValues.java
1 /*\r
2  * ============LICENSE_START========================================================================\r
3  * ONAP : tr-069-adapter\r
4  * =================================================================================================\r
5  * Copyright (C) 2020 CommScope Inc Intellectual Property.\r
6  * =================================================================================================\r
7  * This tr-069-adapter software file is distributed by CommScope Inc under the Apache License,\r
8  * Version 2.0 (the "License"); you may not use this file except in compliance with the License. You\r
9  * may obtain a copy of the License at\r
10  *\r
11  * http://www.apache.org/licenses/LICENSE-2.0\r
12  *\r
13  * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,\r
14  * either express or implied. See the License for the specific language governing permissions and\r
15  * limitations under the License.\r
16  * ===============LICENSE_END=======================================================================\r
17  */\r
18 \r
19 package org.commscope.tr069adapter.acs.cpe.rpc;\r
20 \r
21 import java.util.Map;\r
22 \r
23 import javax.xml.soap.SOAPBodyElement;\r
24 import javax.xml.soap.SOAPElement;\r
25 import javax.xml.soap.SOAPException;\r
26 import javax.xml.soap.SOAPFactory;\r
27 \r
28 import org.commscope.tr069adapter.acs.cpe.TR069RPC;\r
29 \r
30 public class GetParameterValues extends TR069RPC {\r
31 \r
32   private static final String GET_PARAMETER_VALUES = "GetParameterValues";\r
33   private static final long serialVersionUID = -2247007005513782433L;\r
34 \r
35   /** Creates a new instance of GetParameterValues */\r
36   public GetParameterValues() {\r
37     name = GET_PARAMETER_VALUES;\r
38   }\r
39 \r
40   public GetParameterValues(String[] parameterNames) {\r
41     name = GET_PARAMETER_VALUES;\r
42     this.parameterNames = parameterNames;\r
43   }\r
44 \r
45   public GetParameterValues(Map<String, String> parameters) {\r
46     name = GET_PARAMETER_VALUES;\r
47     parameters.keySet().toArray(parameterNames);\r
48   }\r
49 \r
50   public GetParameterValues(String paramName) {\r
51     name = GET_PARAMETER_VALUES;\r
52     this.parameterNames = new String[1];\r
53     this.parameterNames[0] = paramName;\r
54   }\r
55 \r
56   protected void createBody(SOAPBodyElement body, SOAPFactory spf) throws SOAPException {\r
57     SOAPElement elm = body.addChildElement(spf.createName("ParameterNames"));\r
58     elm.setAttribute(SOAP_ARRAY_TYPE, "xsd:string[" + parameterNames.length + "]");\r
59     for (int i = 0; i < parameterNames.length; i++) {\r
60       SOAPElement s = elm.addChildElement("string");\r
61       s.setValue(parameterNames[i]);\r
62     }\r
63   }\r
64 \r
65   @Override\r
66   public String toString() {\r
67     StringBuilder s = new StringBuilder();\r
68     for (int i = 0; i < parameterNames.length; i++) {\r
69       s.append('\t');\r
70       s.append(parameterNames[i]);\r
71       s.append("'\t");\r
72     }\r
73     return s.toString();\r
74   }\r
75 \r
76   protected void parseBody(SOAPBodyElement body, SOAPFactory f) throws SOAPException {\r
77     logger.isDebugEnabled();\r
78   }\r
79 \r
80   private String[] parameterNames;\r
81 \r
82   public String[] getParameterNames() {\r
83     return parameterNames;\r
84   }\r
85 \r
86   public void setParameterNames(String[] parameterNames) {\r
87     this.parameterNames = parameterNames;\r
88   }\r
89 }\r