Adding Copyright Missing files
[oam/tr069-adapter.git] / mapper / src / main / java / org / commscope / tr069adapter / mapper / util / MapperValidator.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.mapper.util;\r
20 \r
21 import java.util.List;\r
22 \r
23 import org.commscope.tr069adapter.acs.common.ParameterDTO;\r
24 \r
25 public class MapperValidator {\r
26   private MapperValidator() {\r
27     throw new IllegalStateException("Can't be instantiated as MapperValidator is utility class");\r
28   }\r
29 \r
30 \r
31   public static boolean isCountDownTimerValid(List<ParameterDTO> paramList) {\r
32     for (ParameterDTO param : paramList) {\r
33       if (Boolean.FALSE.equals(isNullOrEmpty(param.getParamName())) && param.getParamName()\r
34           .toLowerCase().contains(MapperConstants.COUNT_DOWN_TIMER.toLowerCase())) {\r
35 \r
36         return !isNullOrEmpty(param.getParamValue())\r
37             && param.getParamValue().equalsIgnoreCase(MapperConstants.COUNT_DOWN_TIMER_SET_VAL);\r
38       }\r
39     }\r
40     return true;\r
41   }\r
42 \r
43 \r
44 \r
45   public static boolean isNullOrEmpty(String object) {\r
46     return (null == object || object.isEmpty());\r
47   }\r
48 \r
49   public static Boolean isNullOrEmpty(List list) {\r
50     return (null == list || list.isEmpty());\r
51   }\r
52 }\r